POST api/custom/GetPageList

Request Information

URI Parameters

None.

Body Parameters

CustomQueryRequest
NameDescriptionTypeAdditional information
find

string

None.

enabled

integer

None.

customType

integer

None.

agenterId

string

None.

salemanId

string

None.

startTime

date

None.

endTime

date

None.

page

integer

None.

pageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "page": 1,
  "pageSize": 2,
  "find": "sample string 1",
  "enabled": 2,
  "customType": 3,
  "agenterId": "sample string 4",
  "salemanId": "sample string 5",
  "startTime": "2026-06-06T05:20:00.1792536+08:00",
  "endTime": "2026-06-06T05:20:00.1792536+08:00"
}

application/xml, text/xml

Sample:
<CustomQueryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
  <page xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi">1</page>
  <pageSize xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi">2</pageSize>
  <agenterId>sample string 4</agenterId>
  <customType>3</customType>
  <enabled>2</enabled>
  <endTime>2026-06-06T05:20:00.1792536+08:00</endTime>
  <find>sample string 1</find>
  <salemanId>sample string 5</salemanId>
  <startTime>2026-06-06T05:20:00.1792536+08:00</startTime>
</CustomQueryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/plain

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>