Skip to main content
You can restore previously archived jobs via the /restorejobs endpoint.

REQUEST

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

{
	data: {
		jobs: [
			"<job_id_1>",
			"<job_id_2>",
			   ...
			"<job_id_n>"
		]
	}
}
jobs
array
required
An array of job IDs to restore from archived status. Restored jobs will be returned to active status and visible in normal job lists.
If successful, you’ll get status:0 in the response.

RESPONSE

{
	status: 0
}
I