Skip to content
Guides
Fulfillment & ShippingFulfillment
settings:read

Get location by ID

Returns one fulfillment location with its address, capabilities, schedules, pickup, and local-delivery settings.

GET/v1/fulfillment/locations/{id}

Returns one fulfillment location with its address, capabilities, schedules, pickup, and local-delivery settings.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Path Parameters

id*string

Unique identifier of the resource.

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/locations/7204558912004325301" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>"
{  "id": "7204558912004325301",  "storeId": "7204558912004325301",  "name": "Example resource",  "code": "example_code",  "type": "warehouse",  "isActive": false,  "isDefault": false,  "useForFulfillment": false,  "supportsShipping": false,  "supportsLocalDelivery": false,  "supportsPickup": false,  "isPhysicalStore": false,  "supportsPos": false,  "priority": 1,  "localDeliveryPostalCodes": [    "example"  ],  "localDeliveryZones": [    {      "name": "Example resource",      "postalCodes": [        "example"      ],      "radiusKm": 1,      "fee": 1,      "freeFromAmount": 1,      "minHours": 1,      "maxHours": 1    }  ],  "schedules": [    {      "id": "7204558912004325301",      "openTime": "09:00:00Z",      "closeTime": "09:00:00Z",      "name": "Example resource",      "dayOfWeek": "monday",      "enabled": false,      "isOpen": false,      "type": "delivery"    }  ],  "createdOn": "2026-08-01T15:30:00Z"}