Skip to content
Guides
Fulfillment & ShippingFulfillment
settings:read

List packages

Lists active package formats by default; set includeInactive to include inactive formats. A package can be selected when creating a carrier shipment.

GET/v1/fulfillment/packages

Lists active package formats by default; set includeInactive to include inactive formats. A package can be selected when creating a carrier shipment.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Query Parameters

includeInactive?boolean

Header Parameters

x-Store-Id?string

Store the request acts on. Not needed when the token is bound to a store.

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/fulfillment/packages" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>"
[  {    "id": "7204558912004325301",    "storeId": "7204558912004325301",    "name": "Example resource",    "type": "box",    "length": 1,    "width": 1,    "height": 1,    "dimensionUnit": "centimeter",    "emptyWeight": 1,    "weightUnit": "kilogram",    "isDefault": false,    "isActive": false,    "createdOn": "2026-08-01T15:30:00Z",    "updatedOn": "2026-08-01T15:30:00Z"  }]