Tamio

Retrieve a warehouse

GET https://api.tamio.com/v2/warehouses/retrieve/{uuid}

Returns detailed information about a single warehouse.

Path Parameters

uuid string*

UUID of the warehouse.

Responses

200 Warehouse details

Warehouse details

status integer
warehouse Warehouse
400 Validation or business-logic error.
401 Missing or invalid API key
/warehouses/retrieve/{uuid}
1const response = await fetch("https://api.tamio.com/v2/warehouses/retrieve/{uuid}", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "warehouse": {
    "id": "aaa14567-e89b-12d3-a456-426614174000",
    "object": "warehouse",
    "label": "Main Distribution Center",
    "custom_id": "WH-001",
    "country": "US",
    "address": "123 Warehouse Blvd",
    "city": "Los Angeles",
    "postcode": "90001",
    "state": "CA",
    "email": "[email protected]",
    "telephone": "+1-555-0100",
    "areas_served": [
      "US",
      "CA",
      "MX"
    ],
    "products": 45,
    "variants": 120,
    "has_notes": true
  }
}