Hello,
I am using MutateJobServiceInterface from the Google Adwords Java Client Library to get the status of a mutate job. Although I am using the exact value from I got from the 'mutate' call to make 'get' operation/request, I am getting multiple IdError.NOT_FOUND Errors
Here is the stacktrace of SOAP request and response.
SOAP Request:
<soapenv:Header>
<ns1:clientCustomerId>1234567890</ns1:clientCustomerId>
<ns1:developerToken>xxxxxxxxxxxxx</ns1:developerToken>
<ns1:userAgent>my-app:1.0.0 (AwApi-Java, AdWords-Axis/1.38.0, Common-Java/1.38.0, Axis/1.4, Java/1.8.0_31, maven)</ns1:userAgent>
<ns1:validateOnly>false</ns1:validateOnly>
<ns1:partialFailure>true</ns1:partialFailure>
</ns1:RequestHeader>
</soapenv:Header>
<soapenv:Body>
<ns2:jobIds xsi:type="xsd:long">2474373683421243626</ns2:jobIds>
</selector>
</get>
</soapenv:Body>
</soapenv:Envelope>
SOAP Response:
<soap:Header>
<requestId>000515ca5cc69eb90aec6ed23e004897</requestId>
<serviceName>MutateJobService</serviceName>
<methodName>get</methodName>
<operations>1</operations>
<responseTime>94</responseTime>
</ResponseHeader>
</soap:Header>
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>[IdError.NOT_FOUND @ selector.jobIds[0]]</faultstring>
<detail>
<message>[IdError.NOT_FOUND @ selector.jobIds[0]]</message>
<ApplicationException.Type>ApiException</ApplicationException.Type>
<fieldPath>selector.jobIds[0]</fieldPath>
<trigger/>
<errorString>IdError.NOT_FOUND</errorString>
<ApiError.Type>IdError</ApiError.Type>
<reason>NOT_FOUND</reason>
</errors>
</ApiExceptionFault>
</detail>
</soap:Fault>
</soap:Body>
</soap:Envelope>