Skip to content
Guides
Fulfillment & ShippingFulfillment
settings:read

Preview routing

Shows which locations would fulfill an order and how it would split, without committing anything.

POST/v1/fulfillment/routing/preview

Shows which locations would fulfill an order and how it would split, without committing anything.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

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.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://example.com/v1/fulfillment/routing/preview" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>" \  -H "Content-Type: application/json" \  -d '{    "allowSplitFulfillment": false,    "items": [      {        "variantId": "7204558912004325301",        "quantity": 1      }    ]  }'
{  "routingMode": "defaultLocation",  "splitFulfillmentEnabled": false,  "canFulfill": false,  "assignments": [    {      "locationId": "7204558912004325301",      "name": "Example resource",      "isDefault": false,      "items": [        {          "variantId": "7204558912004325301",          "quantity": 1        }      ]    }  ],  "unassignedItems": [    {      "variantId": "7204558912004325301",      "quantity": 1    }  ]}