Confirming a Job
🦉
Confirm A Job
Open Recipe
Confirming On Job Creation
When a job is created via the POST /jobs
endpoint, it can either be created as a draft, by setting is_confirmed: 0
, or as confirmed by setting is_confirmed: 1
. Once a job is confirmed it will be passed to our dispatcher for courier allocation.
Confirming After Job Creation
Once a job has been created as a draft it can be confirmed via the PATCH /jobs/{job_id}
endpoint.
Note: If a job is confirmed at a later point, a new quote may be generated for that job and prices may change.
The following endpoints are only available for draft jobs:
Deliveries
POST /jobs/{job_id}/deliveries
PATCH /jobs/{job_id}/deliveries/{delivery_id}
POST /jobs/{job_id}/deliveries/{delivery_id}/cancel
Parcels
Updated over 1 year ago