Go to App

Retry an Export Job

PATCH/api/v3/job/{guid}/retry

Retry a failed export job. The job must be in error status. Rate limited to 100 retries per user per 30 minutes.

Path Parameters

ParameterTypeDescription

guidrequiredstringJob GUID identifier

bash
curl -X PATCH https://exportcomments.com/api/v3/job/b4219d47-3138-5efd-9762-2ef9f9495084/retry \
-H "X-AUTH-TOKEN: your-api-key"
Response200
json
{
"id": 12345,
"guid": "b4219d47-3138-5efd-9762-2ef9f9495084",
"status": "queueing",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"options": {
"limit": 500,
"replies": true
},
"locked": false,
"json_url": null,
"download_link": null
}
💡
Only failed jobs can be retried

This endpoint only accepts jobs in error status. Attempting to retry a job in any other status will return a 400 error. The retried job re-enters the queue with its original options.