Skip to content
Guides
Fulfillment & ShippingFulfillment
settings:update

Update fulfillment settings

Updates routing, split-fulfillment and packing-slip settings. Routing changes affect future routing; packing-slip values are read when a slip is generated.

PUT/v1/fulfillment/settings

Updates routing, split-fulfillment and packing-slip settings. Routing changes affect future routing; packing-slip values are read when a slip is generated.

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 PUT "https://example.com/v1/fulfillment/settings" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>" \  -H "Content-Type: application/json" \  -d '{    "routingMode": "defaultLocation",    "splitFulfillmentEnabled": false,    "packingSlipSenderName": "Example resource",    "packingSlipSenderPhone": "+51987654321",    "packingSlipSenderEmail": "andrea@example.com",    "packingSlipNotes": "Example note."  }'
{  "storeId": "7204558912004325301",  "routingMode": "defaultLocation",  "splitFulfillmentEnabled": false,  "packingSlipSenderName": "Example resource",  "packingSlipSenderPhone": "+51987654321",  "packingSlipSenderEmail": "andrea@example.com",  "packingSlipNotes": "Example note."}