Skip to main content
GET
/
planner
/
jobs
List jobs
curl --request GET \
  --url https://staging.api.fryte.xyz/planner/jobs \
  --header 'Authorization: Bearer <token>'
[
  {
    "date_created": "2026-04-30T08:00:00Z",
    "job_id": "c3f1c944-a44c-4c07-ab52-7df7ba94024a",
    "last_update": "2026-04-30T08:00:25Z",
    "optimization_id": 7658,
    "status": "succeeded"
  }
]

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.

Query Parameters

user_id
integer
required

User ID to list jobs for

tenant_id
integer | null

Tenant ID

Response

Successful Response

optimization_id
integer
required

Optimization identifier.

job_id
string
required

Job identifier (UUID).

date_created
string
required

Timestamp when the job was created (ISO-8601).

last_update
string
required

Timestamp of the last status update (ISO-8601).

status
string
required

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