Go to App

Stop an Export Job

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

Stop a running or queued export job. Cannot stop jobs that are already in done, error, or stopped status.

Path Parameters

ParameterTypeDescription

guidrequiredstringJob GUID identifier

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

A stopped job cannot be resumed. If you need to export the same URL again, create a new job using the Create Job endpoint.