You can delete one or multiple jobs via the /deletejobs endpoint. Deleted jobs will be deleted entirely, this action cannot be undone. Consider archiving jobs if you want to keep related data in the system.

REQUEST

POST https://api.hellotracks.com/api/deletejobs

{
	data: {
		jobs: [
			"<job_id_1>",
			"<job_id_2>",
			   ...
			"<job_id_n>"
		],
		notify: <boolean>
	}
}

If successful, you’ll get status:0 in the response.

RESPONSE

{
	status: 0
}