Ingest
Push shipments and events in. Org-scoped; rows are stamped with your organization. Max 500 rows per request.
Served by the gateway at https://api.orderlycore.com under /v1, bearer-authenticated. Use the Try it consoles against the Preview server.
Upload shipment master records
/v1/ingest/shipmentsRequires X-Organization-Id. Live.
Request body
[
{
"tracking_number": "1Z999AA10123456784",
"carrier": "ups",
"shipped_at": "2026-07-20T15:00:00Z",
"promised_at": "2026-07-23T23:59:00Z",
"origin_zip": "07001",
"dest_zip": "94107",
"service_level": "ground"
}
]
Responses
200 Success. Payload wrapped in the standard envelope:
{
"ok": true,
"data": {
"accepted": 1
},
"meta": {
"requestId": "\u2026",
"version": "0.1.0"
}
}
400 org_required when the X-Organization-Id header is missing.
401 Missing or invalid bearer token.
429 Rate limit exceeded.
/v1/ingest/shipmentsUpload shipment master records
https://api-staging.orderlycore.com/v1/ingest/shipmentsPush raw tracking events
/v1/ingest/eventsRequires X-Organization-Id. Live.
Request body
[
{
"tracking_number": "1Z999AA10123456784",
"carrier": "ups",
"status": "in_transit",
"description": "Departed facility",
"occurred_at": "2026-07-21T08:12:00Z"
}
]
Responses
200 Success. Payload wrapped in the standard envelope:
{
"ok": true,
"data": {
"accepted": 1
},
"meta": {
"requestId": "\u2026",
"version": "0.1.0"
}
}
400 org_required when the X-Organization-Id header is missing.
401 Missing or invalid bearer token.
429 Rate limit exceeded.
/v1/ingest/eventsPush raw tracking events
https://api-staging.orderlycore.com/v1/ingest/eventsIngest/import job status
/v1/jobs/{id}Live.
Parameters
| Name | In | Required | Description |
|---|---|---|---|
id | path | yes | Job id |
Responses
200 Success. Payload wrapped in the standard envelope:
{
"ok": true,
"data": {
"id": "job_123",
"status": "completed",
"processed": 500,
"failed": 0
},
"meta": {
"requestId": "\u2026",
"version": "0.1.0"
}
}
401 Missing or invalid bearer token.
429 Rate limit exceeded.
/v1/jobs/{id}Ingest/import job status
https://api-staging.orderlycore.com/v1/jobs/