object Warehouse
Fields
| Field | Type | Description | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | String | Public API ID for this identifiable. | ||||||||||||||||||||||||||||||
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. | ||||||||||||||||||||||||||||||
account_id | String | Public API account ID that identifies the related record. | ||||||||||||||||||||||||||||||
identifier | String | Name of the warehouse. | ||||||||||||||||||||||||||||||
dynamic_slotting | Boolean | Whether dynamic slotting is enabled for this warehouse. | ||||||||||||||||||||||||||||||
invoice_email | String | Email address for the invoice contact. | ||||||||||||||||||||||||||||||
phone_number | String | Phone number for the phone number contact. | ||||||||||||||||||||||||||||||
profile | String | Profile for this warehouse. | ||||||||||||||||||||||||||||||
address | Address | Address details for this warehouse. | ||||||||||||||||||||||||||||||
return_address | Address | Return address for this warehouse. | ||||||||||||||||||||||||||||||
company_name | String | Company name for this warehouse. | ||||||||||||||||||||||||||||||
company_alias | String | Company alias for this warehouse. | ||||||||||||||||||||||||||||||
active | Boolean | Whether this warehouse is active. | ||||||||||||||||||||||||||||||
products | ProductConnection | List of products associated with this warehouse. | ||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
Referenced By
- Account Type
- AuthenticatedUser Type
- InboundShipment Type
- PurchaseOrder Type
- ReturnLineItem Type
- Shipment Type
- ShippingPlan Type
- Tote Type
- User Type
- WarehouseProduct Type
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"account_id": "V2FyZWhvdXNlOjEyMzQ=",
"identifier": "Primary Warehouse",
"dynamic_slotting": true,
"invoice_email": "customer@example.com",
"phone_number": "+1-555-0100",
"profile": "default",
"address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
"return_address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
"company_name": "Acme Corp",
"company_alias": "Acme Corp",
"active": true,
"products": [{sku: "BLUE-TEE-M", name: "Blue Tee"}]
}