POST api/Print/GetPrintPaperTypeListForReplaceLogistics
Request Information
URI Parameters
None.
Body Parameters
ReplaceLogisticsPrintPaperTypeSearchDto| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryStatus | integer |
None. |
|
| Ids | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeliveryStatus": 1,
"Ids": [
1,
2
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseResultOfPrintPaperTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
|
| Data | PrintPaperTypeDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3",
"Data": {
"Message": "sample string 1",
"PrintPaperTypeList": [
{
"PaperType": "sample string 1",
"OrderIds": [
1,
2
],
"IsCaiNiao": true
},
{
"PaperType": "sample string 1",
"OrderIds": [
1,
2
],
"IsCaiNiao": true
}
],
"FailOrderIds": [
1,
2
]
}
}