POST api/GetCertReportList

Request Information

URI Parameters

None.

Body Parameters

GetCertReportListRequest
NameDescriptionTypeAdditional information
ProjectTypeID

integer

None.

ProjectCode

Collection of string

None.

UserEmail

string

None.

Page

integer

None.

RowPerPage

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectTypeID": 1,
  "ProjectCode": [
    "sample string 1",
    "sample string 2"
  ],
  "UserEmail": "sample string 2",
  "Page": 3,
  "RowPerPage": 4
}

application/xml, text/xml

Sample:
<GetCertReportListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sirius_Api.Models.Sirius">
  <Page>3</Page>
  <RowPerPage>4</RowPerPage>
  <UserEmail>sample string 2</UserEmail>
  <ProjectCode xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ProjectCode>
  <ProjectTypeID>1</ProjectTypeID>
</GetCertReportListRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetCertReportListRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.