cURL
curl --request POST \ --url https://api.techforgeinnovate.com/jobs/trigger-job \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "ids": [ "<string>" ] } '
Requeue one or more existing jobs by UUID.
{ "ids": [ "15a6331b-3837-4ae8-8fa7-d3ead3388d77", "4bc42c50-3206-44d5-a194-d4feeff2b3c0" ] }
curl -X POST "https://api.techforgeinnovate.com/jobs/trigger-job" \ -H "Content-Type: application/json" \ -H "x-api-key: $TFI_API_KEY" \ -d '{ "ids": [ "15a6331b-3837-4ae8-8fa7-d3ead3388d77", "4bc42c50-3206-44d5-a194-d4feeff2b3c0" ] }'
{ "message": "Job triggered" }
{ "message": "No job found" }
201 Created
401 Unauthorized