cURL
curl --request GET \ --url https://staging-api.puppetvendors.com/settings/shipping/warehouses \ --header 'x-access-token: <api-key>'
Retrieve all warehouses (locations) for the authenticated vendor
Documentation IndexFetch the complete documentation index at: https://dev.puppetvendors.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
Use this file to discover all available pages before exploring further.
{ "success": true, "data": [ { "locationId": 0, "name": "Main Warehouse", "address1": "123 Main St", "city": "Austin", "province": "TX", "zip": "78701", "country": "US" }, { "locationId": 1, "name": "East Coast Fulfillment", "address1": "500 Harbor Blvd", "city": "Jersey City", "province": "NJ", "zip": "07302", "country": "US" } ] }
curl -X GET "https://staging-api.puppetvendors.com/settings/shipping/warehouses" \ -H "x-access-token: YOUR_VENDOR_JWT"
Was this page helpful?