List Fulfillments
curl --request GET \
--url https://api.launchmystore.io/api/v1/orders/{order_id}/fulfillments.json \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"fulfillments": [
{
"id": "ful_abc123",
"order_id": "ord_xyz789",
"status": "in_transit",
"tracking_number": "1Z999AA10123456784",
"tracking_url": "https://ups.com/track?num=1Z999AA10123456784",
"tracking_company": "UPS",
"line_items": [
{
"id": "li_001",
"quantity": 2,
"title": "T-Shirt - Red / Medium"
}
],
"shipped_at": "2024-01-16T09:00:00Z",
"delivered_at": null,
"created_at": "2024-01-16T09:00:00Z"
}
]
}
}
Fulfillments
List Fulfillments
Get all fulfillments for an order
GET
/
api
/
v1
/
orders
/
{order_id}
/
fulfillments.json
List Fulfillments
curl --request GET \
--url https://api.launchmystore.io/api/v1/orders/{order_id}/fulfillments.json \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"fulfillments": [
{
"id": "ful_abc123",
"order_id": "ord_xyz789",
"status": "in_transit",
"tracking_number": "1Z999AA10123456784",
"tracking_url": "https://ups.com/track?num=1Z999AA10123456784",
"tracking_company": "UPS",
"line_items": [
{
"id": "li_001",
"quantity": 2,
"title": "T-Shirt - Red / Medium"
}
],
"shipped_at": "2024-01-16T09:00:00Z",
"delivered_at": null,
"created_at": "2024-01-16T09:00:00Z"
}
]
}
}
Path Parameters
The order ID
Response
Request success status
Show properties
Show properties
Show fulfillment object
Show fulfillment object
Fulfillment ID
Parent order ID
pending, in_transit, delivered, failed
Carrier tracking number
Tracking URL
Carrier name
Fulfilled line items
Ship date
Delivery date
Creation timestamp
{
"success": true,
"data": {
"fulfillments": [
{
"id": "ful_abc123",
"order_id": "ord_xyz789",
"status": "in_transit",
"tracking_number": "1Z999AA10123456784",
"tracking_url": "https://ups.com/track?num=1Z999AA10123456784",
"tracking_company": "UPS",
"line_items": [
{
"id": "li_001",
"quantity": 2,
"title": "T-Shirt - Red / Medium"
}
],
"shipped_at": "2024-01-16T09:00:00Z",
"delivered_at": null,
"created_at": "2024-01-16T09:00:00Z"
}
]
}
}
⌘I