Skip to main content
DELETE
/
batch
/
jobs
/
{id}
curl -X DELETE https://api.u1.archetypeai.app/v0.5/batch/jobs/job_2abc3def4ghi5jkl6mno7pqr \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "id": "job_2abc3def4ghi5jkl6mno7pqr",
  "deleted": true
}

Overview

This endpoint permanently deletes a job and all of its associated data. This action cannot be undone.

Request

id
string
required
The unique job identifier

Response

id
string
The ID of the deleted job
deleted
boolean
Whether the job was successfully deleted
curl -X DELETE https://api.u1.archetypeai.app/v0.5/batch/jobs/job_2abc3def4ghi5jkl6mno7pqr \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "id": "job_2abc3def4ghi5jkl6mno7pqr",
  "deleted": true
}
Deleting a job is permanent and cannot be undone. All associated inputs, outputs, events, and progress data will also be removed.