cURL
curl --request DELETE \ --url https://api.example.com/job/delete/{job_id} \ --header 'Authorization: Bearer <token>'
{ "status": "<string>", "message": "<string>" }
Hide a terminal job from API endpoints by marking it as deleted.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Response model for DELETE /job/delete/{job_id} endpoint.
Status of the operation
"success"
Success message
Was this page helpful?