POST Api/PDFGen/Execute

Request Information

URI Parameters

None.

Body Parameters

GenPDFParam
NameDescriptionTypeAdditional information
PathUrl

string

None.

FileName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PathUrl": "sample string 1",
  "FileName": "sample string 2"
}

application/xml, text/xml

Sample:
<GenPDFParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDFService.Models">
  <FileName>sample string 2</FileName>
  <PathUrl>sample string 1</PathUrl>
</GenPDFParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultBO
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2",
  "Data": "sample string 3"
}

application/xml, text/xml

Sample:
<JsonResultBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDFService.Models">
  <Data>sample string 3</Data>
  <Message>sample string 2</Message>
  <Status>true</Status>
</JsonResultBO>