Replay a completed job. Replays are intended for jobs that have a COMPLETED
, FAILED
, or CANCELLED
status, or if you expect additional results to be present for your chosen export window since you first scheduled the job.
Parameters
No parameters.
Example request
curl 'https://api.impact.com/Advertisers/<AccountSID>/Jobs/<JobId>/Replay' \
-X PUT \
-u '<AccountSID>:<AuthToken>' \
-H 'Accept: application/json'
-H 'Content-length: 0'
Example response
Response code | Result |
---|---|
🟢 200 | Returns an object describing the status of the replayed job. |
🔴 403 | The job is not in a replayable state or is not of a replayable type. |
{
"Id": "d8807a9f-a5ee-4e3f-ad2b-3dfd19d1915f",
"Type": "ClickExport",
"ProgramId": "3629",
"CreatedBy": "{<AccountSID>",
"CreatedDate": "2022-06-07T04:33:50-05:00",
"StartedDate": "2022-06-07T04:33:50-05:00",
"AbandonedDate": "2022-06-07T04:33:50-05:00",
"CompletedDate": "2022-06-07T04:33:50-05:00",
"CancelledDate": "2022-06-07T04:33:50-05:00",
"FailedDate": "2022-06-07T04:33:50-05:00",
"LastProgressUpdateDate": "2022-06-07T04:33:50-05:00",
"Status": "COMPLETED",
"StatusMessage": "Job processing completed successfully.",
"RecordsProcessed": "250",
"PercentageComplete": "100",
"Replayable": "true",
"ResultUri": "/Advertisers/<AccountSID>/Jobs/d8807a9f-a5ee-4e3f-ad2b-3dfd19d1915f/Download"
}