| PUT | /Logistics/GetProdListByBcode |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| BcodeList | body | List<string> | No | |
| ByInCode | body | bool | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | List<tfProdListByBcode> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| prodpp_id | form | string | No | |
| bcode | form | string | No | |
| products_nu | form | string | No | |
| pricegr | form | decimal | No | |
| pricegt | form | decimal | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /Logistics/GetProdListByBcode HTTP/1.1
Host: 10.10.0.107
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
BcodeList:
[
String
],
ByInCode: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Result:
[
{
prodpp_id: String,
bcode: String,
products_nu: String,
pricegr: 0,
pricegt: 0
}
]
}