WarehouseShelvesFindById¶
Use this api to get warehouse information based on the specified shelf id.
GET /openapi/warehouse-inventory/v1/warehouse-shelves/find-by-id
Request Parameters¶
Parameter | Type | Required | Description |
---|---|---|---|
id |
string |
true |
Warehouse shelf's id |
Response Parameters¶
Name | Type | Description |
---|---|---|
id |
string |
Warehouse shelf's id |
userId |
string |
User id |
warehouseId |
string |
Warehouse id |
name |
string |
Warehouse shelf's name |
code |
string |
Warehouse shelf's code |
createDatetime |
datetime |
Create date and time |
updateDatetime |
datetime |
Update date and time |
Request Example¶
Example
curl --location --request GET '{Ginee Host}/openapi/warehouse-inventory/v1/warehouse-shelves/find-by-id?id=WS61EA66409B9717000127DAD6' \
--header 'Authorization: 2aedf7919e5e6cb4:S0sSLI9RSK/Vw6t3MpDm7pCgD+Vze0/9fu4W0PaX/iE=' \
--header 'X-Advai-Country: ID' \
--header 'Content-Type: application/json' \
Success
{
"code": "SUCCESS",
"message": "成功",
"data": {
"id": "WS61EA66409B9717000127DAD6",
"userId": "U1484411281229213696",
"warehouseId": "WW61EA663F9B9717000127DAD5",
"name": "",
"code": "",
"createDatetime": "2022-01-21T07:52:33Z",
"updateDatetime": "2022-01-21T07:52:33Z"
},
"extra": null,
"pricingStrategy": "PAY"
}