warehouses
Get warehouse
Returns a specific Ship From Location (formerly known as warehouse).
Note: In the API, the endpoint is called warehouse, but the process actually affects Ship From Locations in the UI.
get/warehouses/{warehouseId}
Path parameters
warehouseIdinteger required
Warehouse ID
Response
Warehouse retrieved successfully
Example response
{
"warehouseId": 12345,
"warehouseName": "Headquarters",
"originAddress": {
"name": "John Doe",
"company": "Acme Corp",
"street1": "123 Main St",
"street2": "Apt 4B",
"street3": "Building B",
"city": "Austin",
"state": "TX",
"postalCode": "78701",
"country": "US",
"phone": "512-555-1234",
"residential": true,
"addressVerified": "Address validated successfully"
},
"returnAddress": {
"name": "John Doe",
"company": "Acme Corp",
"street1": "123 Main St",
"street2": "Apt 4B",
"street3": "Building B",
"city": "Austin",
"state": "TX",
"postalCode": "78701",
"country": "US",
"phone": "512-555-1234",
"residential": true,
"addressVerified": "Address validated successfully"
},
"isDefault": true
}