get
https://{subdomain}.myshoplaza.com/openapi/2025-06/orders//fulfillments/count
Retrieves the total number of fulfillments for a specific order.
Requiresread_orderaccess scope. More access scope
The Fulfillment Total Count API retrieves the total number of fulfillments for a specific order. This enables users to query the count of fulfillments created or updated within a given date range.
This API is especially useful for:
- Monitoring fulfillment activities for an order.
- Validating the number of fulfillments processed over time.
- Filtering fulfillments based on creation or update timestamps.
Request Parameters
Public Request Parameters
Path Parameters
| Parameter | Type | Required | Example | Description |
|---|---|---|---|---|
order_id | string | Yes | 633130-00000012 | Unique identifier for the order. |
Query Parameters
| Parameter | Type | Required | Example | Description |
|---|---|---|---|---|
created_at_min | string | No | 2016-01-18T23:41:00Z | Filter fulfillments created at or after this date (ISO-8601). |
created_at_max | string | No | 2016-01-18T23:41:00Z | Filter fulfillments created at or before this date (ISO-8601). |
updated_at_min | string | No | 2016-01-18T23:41:00Z | Filter fulfillments updated at or after this date (ISO-8601). |
updated_at_max | string | No | 2016-01-18T23:41:00Z | Filter fulfillments updated at or before this date (ISO-8601). |
Response Explanation
Public Response Parameters
Success Response
| Field | Type | Description | Example |
|---|---|---|---|
code | string | "success" | Response status code |
message | string | Descriptive message of the response | |
data.count | int32 | 1 | Total number of fulfillments. |
Error Response
| Field | Type | Example | Description |
|---|---|---|---|
code | string | InvalidParameter | Error http message |
message | string | `` | Error message |
