POST api/getcourierslist

Request Information

URI Parameters

None.

Body Parameters

RequestParamCourier
NameDescriptionTypeAdditional information
filter

string

None.

startpage

integer

None.

pagesize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "filter": "sample string 1",
  "startpage": 2,
  "pagesize": 3
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CourierResponse
NameDescriptionTypeAdditional information
lstcouriers

Collection of CourierModel

None.

totalItems

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "lstcouriers": [
    {
      "$id": "2",
      "Code": 1,
      "Name": "sample string 2",
      "RowNumber": 3
    },
    {
      "$ref": "2"
    }
  ],
  "totalItems": 1
}