Skip to main content
GET
/
settings
/
shipping
/
warehouses
/
{locationId}
Get Warehouse
curl --request GET \
  --url https://staging-api.puppetvendors.com/settings/shipping/warehouses/{locationId} \
  --header 'x-access-token: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt

Use this file to discover all available pages before exploring further.

V2 Preview — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Retrieve a single warehouse / location by its numeric locationId. Vendor scope required.

Path Parameters

locationId
integer
required
Numeric locationId of the warehouse.

Response

200
{
  "success": true,
  "data": {
    "locationId": 0,
    "name": "Main Warehouse",
    "address1": "123 Main St",
    "city": "Austin",
    "province": "TX",
    "zip": "78701",
    "country": "US"
  }
}

Example

curl -X GET "https://staging-api.puppetvendors.com/settings/shipping/warehouses/0" \
  -H "x-access-token: YOUR_VENDOR_JWT"