GET api/PdfMergeJob?count={count}
Get Some Initialization Jobs
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| count |
Default 75 |
integer |
Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
Collection of JobProcess| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestKey |
RequestKey for the job |
string |
None. |
| RequestUrl |
Pdf Url that have to be convert |
string |
None. |
| SetStateUrl |
Pdf Api Url to put State |
string |
None. |
| PdfServerUrl |
Pdf Api Url to put State |
string |
None. |
| FileName | string |
None. |
|
| LandScape | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RequestKey": "sample string 1",
"RequestUrl": "sample string 2",
"SetStateUrl": "sample string 3",
"PdfServerUrl": "sample string 4",
"FileName": "sample string 5",
"LandScape": true
},
{
"RequestKey": "sample string 1",
"RequestUrl": "sample string 2",
"SetStateUrl": "sample string 3",
"PdfServerUrl": "sample string 4",
"FileName": "sample string 5",
"LandScape": true
}
]
application/xml, text/xml
Sample:
<ArrayOfJobProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KanoonExamPdfServiceDb.Models">
<JobProcess>
<FileName>sample string 5</FileName>
<LandScape>true</LandScape>
<PdfServerUrl>sample string 4</PdfServerUrl>
<RequestKey>sample string 1</RequestKey>
<RequestUrl>sample string 2</RequestUrl>
<SetStateUrl>sample string 3</SetStateUrl>
</JobProcess>
<JobProcess>
<FileName>sample string 5</FileName>
<LandScape>true</LandScape>
<PdfServerUrl>sample string 4</PdfServerUrl>
<RequestKey>sample string 1</RequestKey>
<RequestUrl>sample string 2</RequestUrl>
<SetStateUrl>sample string 3</SetStateUrl>
</JobProcess>
</ArrayOfJobProcess>