Get All
GET
/
v1
/
orders
Copy
curl --request GET \
--url https://third-party.etrnl.app/v1/orders \
--header 'API-Key: <api-key>'
Copy
{
success: true,
err: '',
orders: [
{
id: 17,
organizationId: 681,
productId: 91,
displayName: "John's order",
creationDate: "2023-09-26T23:19:42.000Z",
fulfilled: false,
tagMetadata: { internalOrderId: 123456 },
shippingLabelImgUrl: "https://example.com/johns-shipping-label.png",
fulfillmentDate: null
}
]
}
Get all orders within an organization
Headers
Your organization’s private API key.
Copy
{
success: true,
err: '',
orders: [
{
id: 17,
organizationId: 681,
productId: 91,
displayName: "John's order",
creationDate: "2023-09-26T23:19:42.000Z",
fulfilled: false,
tagMetadata: { internalOrderId: 123456 },
shippingLabelImgUrl: "https://example.com/johns-shipping-label.png",
fulfillmentDate: null
}
]
}
Copy
curl --request GET \
--url https://third-party.etrnl.app/v1/orders \
--header 'API-Key: <api-key>'
Copy
{
success: true,
err: '',
orders: [
{
id: 17,
organizationId: 681,
productId: 91,
displayName: "John's order",
creationDate: "2023-09-26T23:19:42.000Z",
fulfilled: false,
tagMetadata: { internalOrderId: 123456 },
shippingLabelImgUrl: "https://example.com/johns-shipping-label.png",
fulfillmentDate: null
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.