POST api/Print/GetPrintPaperTypeListForReplaceLogistics

Request Information

URI Parameters

None.

Body Parameters

ReplaceLogisticsPrintPaperTypeSearchDto
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ReplaceLogisticsPrintPaperTypeSearchDto'.

Response Information

Resource Description

ResponseResultOfPrintPaperTypeDto
NameDescriptionTypeAdditional 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
    ]
  }
}