Skip to main content
GET
/
planner
/
jobs
/
{job_id}
Get job status
curl --request GET \
  --url https://staging.api.fryte.xyz/planner/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "c3f1c944-a44c-4c07-ab52-7df7ba94024a",
  "optimization_id": 7658,
  "status": "succeeded",
  "tour_id": 7615,
  "vehicle_id": "010160700001"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fryte.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Job identifier returned by POST /planner/v2.

Query Parameters

tenant_id
integer | null

Tenant ID

Response

Successful Response

job_id
string
required

Job identifier (UUID).

status
string
required

Job status: queued, running, succeeded, not_drivable, failed, canceled.

tour_id
integer
required

Internal tour identifier.

optimization_id
integer | null

Optimization identifier.

vehicle_id
string | null

Vehicle identifier.