Order Lookup
Retrieve a specific order by its unique identifier
Authorizations
AuthorizationstringRequired
Authorize the API call with your API token in the Authorization header with the value: Bearer your-api-token.
If you don't have an API token yet, please refer to Authorization to learn how to create one.
Path parameters
orderNumberstring · min: 1 · max: 50Required
The unique order number to retrieve.
Responses
200
Order retrieved successfully
400
Invalid order number parameter
401
Missing or invalid JWT token
403
Insufficient scope or tenant not resolved
404
Order not found
500
Internal server error
get
/api/orders/{orderNumber}GET /customer/api/orders/{orderNumber} HTTP/1.1
Host: api.partssource.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"order": null,
"errors": [
"text"
],
"correlationId": "text",
"timestamp": "2025-12-06T19:57:06.340Z"
}Last updated

