Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api-docs.hellotracks.com/llms.txt

Use this file to discover all available pages before exploring further.

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
}