Warehouses
The Warehouses resource allows you to retrieve location and identity information for a single warehouse or all warehouses. Below is a list of fulfillment warehouses that customers can send their products to restock their inventory. The ID is the warehouse.id
and is used for selecting the warehouse when creating an inbound shipment.
ID | Name | Language | Address |
---|---|---|---|
WH0BEY01 | Beirut 1 | English (en) | Net Warehouse Karantina Seaside Rd Beirut, LB TEL: +9611593400 |
WH0CAN02 | BoxC Guangzhou | Chinese (zh) | 广州市南沙保税港区(东北1门) 广东省广州市南沙区龙穴街道扬帆路 4号仓二层南侧S2-8库 周一到周五: 09:30 - 18:00 Guangzhou Nansha Free Trade Zone Building 4, 2/F, Unit 8 No 3, Gangrong 2nd Street, Longxue Street Nansha District, Guangzhou China |
WH0CVG01 | US - Central 1 | English (en) | Please contact Support for authorization to use this location. BoxC C/O IPS Donaldson Road Center 1 1390 Donaldson Rd, Bay H Erlanger, KY 41018 |
WH0DGM01 | BoxC DGM | Chinese (zh) | TBD |
WH0HKG01 | Hong Kong 1 | Chinese (zh) | BoxC C/O SDL DD107 San Tam Road, 300 Fung Kat Heung, Kam Tin, Yuen Long, N.T., H.K. Attn: Elaine Ng Contact Number: 3899 2931 BoxC C/O SDL (兆德企業) 元朗錦田新潭路逢吉鄉300 号DD107 聯繫人:ELAINE NG 聯繫方式:3899 2931 |
WH0HKG02 | Hong Kong Wholesale | Chinese (zh) | Please contact Support for authorization to use this location. |
WH0HKG03 | Hong Kong 3 | Chinese (zh) | Please contact Support for authorization to use this location. |
WH0JFK01 | US - East 1 | English (en) | TBD |
WH0KIX03 | BoxC Osaka 3 | English (en) | Please contact Support for authorization to use this location. |
WH0LAX01 | US - West 1 | English (en) | TBD |
WH0LHR02 | UK - London 2 | English (en) | Please contact Support for authorization to use this location. |
WH0SZ001 | CN - Dongguan 1 | Chinese (zh) | 广东省东莞市长安镇建安路689号 冠城电子信息工业园B1栋二楼二区 周一到周五: 09:30 - 18:00 电话: 186 7023 1351 Zone 2, Floor 2, Building B1, 689 Jian'an Road, Dongguan, Guangdong 518125 China Phone: 186 7023 1351 |
WH0SZX02 | CN - SZ Long Term Storage | Chinese (zh) | Please contact Support for authorization to use this location. |
WH0SZX03 | BoxC Shenzhen 3 | Chinese (zh) | TBD |
WH0SZX04 | CN - SZ Qianhai 503 | Chinese (zh) | 广东省深圳市南山区怡海大道53号 前海综合保税区5号仓503库 周一到周五: 09:30 - 18:00 Qianhai Comprehensive Free Trade Zone Warehouse 503 / Bld 5, 53 Yihai Avenue, Nanshan District, Shenzhen China |
Actions
GET /warehouses |
Retrieves a list of warehouses |
GET /warehouses/{id} |
Retrieves a warehouse |
Properties
address |
|
country |
|
id |
|
language |
|
language_code |
|
name |
|
storage |
{ "storage": { "free_days": 30, "large_cost": 30, "medium_cost": 0.03, "small_cost": 0.01 } } Object - Information about the storage costs for the warehouse. Set by the system. free_days: Integer - The number of days a product will be stored for free.large_cost: Decimal - The price per cubic meter for storing a large sized product. medium_cost: Decimal - The price for storing one unit of a medium sized product. small_cost: Decimal - The price for storing one unit of a small sized product. |
GET
/warehouses
Retrieves a list of warehouses
request
GET /warehouses
response
HTTP/1.1 200 OK
{ "warehouses": [ { "address": "Flat A-C, 15\/F, Cheung Hing Shing Centre\nNo.23 Sha Tsui Road\nTsuen Wan\nNT 999077\nHong Kong", "country": "HK", "id": "WH0HK001", "language": "Chinese", "language_code": "zh", "name": "BoxC Hong Kong 1", "storage": { "free_days": 30, "large_cost": 30, "medium_cost": 0.03, "small_cost": 0.01 } }, { "address": "Unit 5b, 102 Jinfanghua Ecommerce District\nShenzhen\nGD 518000\nChina", "country": "CN", "id": "WH0SZ001", "language": "Chinese", "language_code": "zh", "name": "BoxC Shenzhen 1", "storage": { "free_days": 7, "large_cost": 0, "medium_cost": 0, "small_cost": 0 } }, { "...": "..." } ] }
GET
/warehouses/{id}
Retrieves a warehouse
request
GET /warehouses/WH0SZ001
response
HTTP/1.1 200 OK
{ "warehouse": { "address": "Unit 5b, 102 Jinfanghua Ecommerce District\nShenzhen\nGD 518000\nChina", "country": "CN", "id": "WH0SZ001", "language": "Chinese", "language_code": "zh", "name": "BoxC Shenzhen 1" } }