Skip to main content
curl -X DELETE https://api.dronebundle.com/v1/job-types/019d4370-abcd-7000-8000-123456789abc \
  -H "Authorization: Bearer v1_your_api_key_here"
{}
Requires an API key with full_access scope. Only custom job types can be deleted. Predefined types (e.g. Wind Turbine, Cell Tower) cannot be removed.

Path parameters

jobTypeId
string
required
The unique identifier of the custom job type to delete.

Response

Returns 204 No Content with an empty response body.
curl -X DELETE https://api.dronebundle.com/v1/job-types/019d4370-abcd-7000-8000-123456789abc \
  -H "Authorization: Bearer v1_your_api_key_here"
{}

Errors

400 Bad Request - Cannot delete predefined types.
{
  "message": "Cannot delete predefined job types"
}
404 Not Found - Job type not found.
{
  "message": "Job Type not found"
}