get
https://{subdomain}.myshoplaza.com/openapi/2025-06/orders//fulfillments
Returns a list of all logistics providers supported by Shoplazza Fulfillment.
Requiresread_orderaccess scope. More access scope
The Get Tracking Code List API retrieve all fulfillment information for a specific order, including tracking details and shipped items.
This API is especially useful for:
- Tracking shipment status and logistics information for orders
- Managing fulfillment operations and inventory
- Providing customers with detailed shipping updates
Request Parameters
Public Request Parameters
Path Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
order_id | string | Yes | Unique identifier for the order | "ord_123456789" |
Query Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
cursor | string | No | Pagination cursor | "next_page_token" |
page_size | int32 | No | Results per page (1-250, default 10) | 50 |
created_at_min | string | No | Filter fulfillments created after this time | "2025-01-01T00:00:00Z" |
created_at_max | string | No | Filter fulfillments created before this time | "2025-01-31T23:59:59Z" |
updated_at_min | string | No | Filter fulfillments updated after this time | "2025-01-15T00:00:00Z" |
updated_at_max | string | No | Filter fulfillments updated before this time | "2025-01-15T23:59:59Z" |
Response Explanation
Public Response Parameters
Success Response
| Parameter | Type | Example | Description |
|---|---|---|---|
code | string | "success" | API response status code |
message | string | "Fulfillment data retrieved" | Response message |
data.fulfillments | array | - | Array of fulfillment records |
data.fulfillments. id | string | "ful_12345" | Fulfillment ID |
data.fulfillments. order_id | string | "ord_123456789" | Associated order ID |
data.fulfillments. status | string | "delivered" | Fulfillment status |
data.fulfillments. created_at | string | "2025-01-15T10:30:00Z" | Creation timestamp |
data.fulfillments. updated_at | string | "2025-01-18T15:45:00Z" | Last update timestamp |
data.fulfillments. tracking_company | string | "FedEx" | Shipping carrier name |
data.fulfillments. tracking_number | string | "123456789012" | Tracking number |
data.fulfillments. tracking_company_code | string | "fedex" | Carrier code |
data.fulfillments. tracking_url | string | "https://fedex.com/track?num=123456789012" | Tracking URL |
data.fulfillments. line_items | array | - | Shipped products |
data.fulfillments. line_items.id | string | "li_12345" | Line item ID |
data.fulfillments. line_items.product_id | string | "prod_12345" | Product ID |
data.fulfillments. line_items.product_title | string | "Summer Dress" | Product name |
data.fulfillments. line_items.variant_id | string | "var_12345" | Variant ID |
data.fulfillments. line_items.variant_title | string | "Blue / Medium" | Variant description |
data.fulfillments. line_items.quantity | uint32 | 2 | Quantity shipped |
data.fulfillments. line_items.sku | string | "SUMMER-DRESS-BLUE-M" | Stock keeping unit |
data.fulfillments. line_items.image.src | string | "https://example.com/ image.jpg" | Product image URL |
data.fulfillments. line_items.price | string | "49.99" | Unit price |
data.fulfillments. line_items.total_price | string | "99.98" | Total price |
data.fulfillments. line_items.weight | string | "0.5" | Item weight |
data.fulfillments. line_items.weight_unit | string | "kg" | Weight unit |
data.fulfillments. line_items.fulfillment_status | string | "fulfilled" | Fulfillment status |
data.fulfillments. line_items.taxable | boolean | true | Taxable status |
data.fulfillments. line_items.requires_shipping | boolean | true | Shipping requirement |
data.fulfillments. line_items.tax_price | string | "8.00" | Tax amount |
data.fulfillments. line_items.duty_price | string | "5.00" | Duty amount |
data.cursor | string | "next_page_token" | Pagination token |
data.has_more | boolean | true | More pages available |
Error Response
| Field | Type | Example | Description |
|---|---|---|---|
code | string | InvalidParameter | Error http message |
message | string | `` | Error message |
