Seller warehouse (also call seller inventory) is a warehouse of seller from which Tiki can pickup products or to which Tiki can return products.
In order to operate their stores, seller needs to register their active warehouses to Tiki. These warehouses will be used when they want to fulfill their orders.
Properties
Name | Type | Example | Description |
---|---|---|---|
id | Integer | 558 | The unique id of the seller inventory To be used in order confirmation and dropship confirmation |
seller_id | Integer | 871 | The seller who own the inventory |
is_primary | Boolean | true | Is this the main inventory of the seller |
name | String | Alice Shop Hà Nội | The friendly name of the seller inventory |
status | Integer | 1 | Is this inventory active or not |
address | Object | N/A | Detail address of the inventory |
type | String | requisition | Type of the inventory |
Warehouse status:
- 1 means active
- 0 means inactive
Warehouse types:
- requisition means this inventory supplies products to Tiki warehouse
- withdrawal means this inventory receives returned products from Tiki
Example
{
"id": 558,
"seller_id": 871,
"is_primary": false,
"name": "Seller Alice Shop Hà Nội",
"status": 1,
"address": {
"street": "01 đường số 2",
"ward": "Xã Đông Xuân",
"district": "Huyện Sóc Sơn",
"region": "Hà Nội",
"country": "Viet Nam"
},
"type": "requisition"
}