POST api/chargeLine/GetPageList

Request Information

URI Parameters

None.

Body Parameters

ChargeLineQueryReq
NameDescriptionTypeAdditional information
find

string

None.

channelType

integer

None.

page

integer

None.

pageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "find": "sample string 1",
  "channelType": 2,
  "page": 3,
  "pageSize": 4
}

application/xml, text/xml

Sample:
<ChargeLineQueryReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.AppApi.Controllers">
  <page xmlns="http://schemas.datacontract.org/2004/07/Football.AppApi">3</page>
  <pageSize xmlns="http://schemas.datacontract.org/2004/07/Football.AppApi">4</pageSize>
  <channelType>2</channelType>
  <find>sample string 1</find>
</ChargeLineQueryReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultMsg
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "code": 3
}

application/xml, text/xml

Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model">
  <Code>3</Code>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ResultMsg>