POST api/customscomparison/GetExceptionWarnPager

Request Information

URI Parameters

None.

Body Parameters

exceptionWarnPageDto
NameDescriptionTypeAdditional information
businessType

string

None.

warnType

string

None.

Id

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "businessType": "sample string 1",
  "warnType": "sample string 2",
  "id": "3",
  "pageIndex": 4,
  "pageSize": 5
}

application/xml, text/xml

Sample:
<exceptionWarnPageDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
  <Id xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">3</Id>
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">4</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">5</PageSize>
  <businessType>sample string 1</businessType>
  <warnType>sample string 2</warnType>
</exceptionWarnPageDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfPagedResultDataTable
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

PagedResultDataTable

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": {
    "totalCount": 1,
    "items": null
  },
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<ReturnResultOfPagedResultDataTableDN9A7J8d xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">
    <d2p1:items i:nil="true" />
    <d2p1:totalCount>1</d2p1:totalCount>
  </Data>
  <Message>sample string 3</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfPagedResultDataTableDN9A7J8d>