POST /shopify-store-locations.json
Body Required
-
shopifyLocationId string | null
Shopify location
-
shopifyStoreId integer(int32) | null
Shopify store
-
warehouseId integer(int32) | null
Warehouse
POST /shopify-store-locations.json
curl \
-X POST http://api.example.com/v1/shopify-store-locations.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"shopifyLocationId":"string","shopifyStoreId":42,"warehouseId":42}'
Request example
{
"shopifyLocationId": "string",
"shopifyStoreId": 42,
"warehouseId": 42
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"shopifyLocationId": "string",
"shopifyStoreId": 42,
"updatedAt": "2024-05-04T09:42:00+00:00",
"warehouseId": 42
}