- Integration API
- account
- import
- orders
- return
- from-template
- quote
- {orderId}
- search
- items
- Create a new orderPOST
- order-templates
- routes
- subscriptions
- userfields
- account
Get the items from multiple orders
Testing Env
Testing Env
GET
https://statimlogistics-test.dsapp.io/integration/api/v1/orders/items
as such, make sure to provide the Authorization header with a valid value.
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Query Params
orderIds
array[string]
required
Example:
["<string>","<string>"]
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://statimlogistics-test.dsapp.io/integration/api/v1/orders/items?orderIds=<string>&orderIds=<string>' \
--header 'Authorization: Basic Og=='
Responses
🟢200Items returned
text/plain
Body
object {0}
Example
{
"order_id": [
{
"itemId": "string",
"itemNumber": "integer",
"barcode": "string",
"parcelTypeId": "string",
"description": "string",
"weight": "float",
"height": "float",
"length": "float",
"width": "float",
"isDamaged": "boolean",
"isMissing": "boolean",
"addedByDriverId": "string | null",
"exceptionCodes": [
"string"
],
"userFields": [
{
"userFieldId": "string",
"value": "string | null",
"label": "string",
"typeId": "string"
},
{
"userFieldId": "string",
"value": "string | null",
"label": "string",
"typeId": "string"
}
]
}
]
}
🟠404No orders found
🔴500An error occurred when trying to get the items
🟠401Unauthorized
Modified at 2025-02-27 08:50:55