POST api/user/ExportPdf

Request Information

URI Parameters

None.

Body Parameters

UserSearchDto
NameDescriptionTypeAdditional information
Name

string

None.

StartDate

date

None.

EndDate

date

None.

EffectiveDate

Collection of string

None.

SkipCount

integer

None.

MaxResultCount

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "startDate": null,
  "endDate": null,
  "effectiveDate": [
    "sample string 1",
    "sample string 2"
  ],
  "skipCount": 2,
  "maxResultCount": 3,
  "pageIndex": 4,
  "pageSize": 5
}

application/xml, text/xml

Sample:
<UserSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Search">
  <MaxResultCount xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">3</MaxResultCount>
  <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>
  <SkipCount xmlns="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">2</SkipCount>
  <EffectiveDate xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </EffectiveDate>
  <Name>sample string 1</Name>
</UserSearchDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.