- 06 Aug 2024
- DarkLight
check the status of validation batch job with transactions details
- Updated on 06 Aug 2024
- DarkLight
accessToken
advertiserId
jobId
Additional Path parameters
?output=errors
To provide an additional list of the transactions that generated an error during validation, add the "output=errors" parameter to the URL. The API lists the individual transactions that are within the failedTransactions object.
?output= all
To generate a full list of all transactions inside the allTransactions object, add the "output=all" parameter to the URL instead.
output
Response Body:
by transactionId, or by orderRef, transactionDate, and timezone.
{ "jobId": "5cb8290460b59a6e7ae22d0b", "status": "DONE", "transactions": 2, "allTransactions": null, "errors": 2, "failedTransactions": [ { "transactionId": 1234567, "orderRef": null, "transactionDate": null, "timezone": "", "code": "[404 NOT_FOUND]", "description": null }, { "transactionId": 1234568, "orderRef": null, "transactionDate": null, "timezone": "", "code": "[404 NOT_FOUND]", "description": null } ], "creationDate": "2019-04-18T09:49:35.558", "completionDate": "2019-04-18T09:49:36.513" } |
OK