API key passed via request header. Either this or the api_key query parameter is required.
Area of interest expressed as a list of H3 cell identifiers. Provide this OR geometry, never both. Must contain at least one zone.
["8928308280fffff","89283082803ffff"]Purpose of the order. Currently only new_capture (request a fresh capture of the area) is supported.
Name of the customer organization placing the order.
Acme SurveyingFirst name of the primary customer contact.
JaneLast name of the primary customer contact.
DoeEmail address of the primary customer contact.
jane.doe@acme.examplePreferred start of the capture window (ISO-8601). When both bounds are supplied, must be before preferred_capture_end.
2026-07-01T00:00:00.000ZPreferred end of the capture window (ISO-8601). When both bounds are supplied, must be after preferred_capture_start.
2026-07-31T00:00:00.000ZCaller-supplied identifier for the order in an external system. Echoed back on read endpoints for reconciliation.
PO-2026-0042URL to ground control or reference data to use for this capture.
Free-form notes or special instructions for the order.
Tasking order accepted and persisted.
Spexi-assigned identifier for the newly created order.
SPX-20260625-ABC123UUID of the organization that submitted the order.
Echoed external_order_id from the request, if one was sent.
Echoed control_data_url from the request, if one was sent.
Initial order status. Always submitted on creation.
ISO-8601 timestamp when the order was created.
Invalid payload: failed validation, both/neither of zones and geometry supplied, missing product_sub_type for an orthomosaic, or preferred_capture_start not before preferred_capture_end.
Missing or invalid authentication credentials.
Caller lacks permission to submit orders. Only org_owner and org_admin roles (or a Developer API key) may submit.
POST /developer-api/api/v1/order/tasking HTTP/1.1
Host: world.spexi.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 601
{
"zones": [
"8928308280fffff",
"89283082803ffff"
],
"geometry": {
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[]
]
},
"properties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"intent": "new_capture",
"products": [
{
"product_type": "panorama",
"product_sub_type": "standard"
}
],
"customer_org_name": "Acme Surveying",
"customer_first_name": "Jane",
"customer_last_name": "Doe",
"customer_email": "jane.doe@acme.example",
"preferred_capture_start": "2026-07-01T00:00:00.000Z",
"preferred_capture_end": "2026-07-31T00:00:00.000Z",
"external_order_id": "PO-2026-0042",
"control_data_url": "https://example.com",
"notes": "text"
}{
"spexi_order_id": "SPX-20260625-ABC123",
"submitted_by_org_id": "123e4567-e89b-12d3-a456-426614174000",
"external_order_id": "text",
"control_data_url": "https://example.com",
"status": "submitted",
"created_at": "2026-01-01T00:00:00.000Z"
}Last updated