GET api/PdfMerge?requestKey={requestKey}
Get The Job Status
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| requestKey |
Request Key which return when starting jobs |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
MergeJobState| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestKey |
RequestKey for the job |
string |
None. |
| Type |
The type of workbook |
integer |
None. |
| DownloadUrl |
The url for downloading the pdf |
string |
None. |
| JobState |
The State of job |
WorkBookPdfStateResult |
None. |
| JobStateStr |
The State Id of job |
string |
None. |
| PdfCheckStateUrl |
The Url for Check State of job |
string |
None. |
| FileName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RequestKey": "sample string 1",
"Type": 2,
"DownloadUrl": "sample string 3",
"JobState": 0,
"JobStateStr": "sample string 4",
"PdfCheckStateUrl": "sample string 5",
"FileName": "sample string 6"
}
application/xml, text/xml
Sample:
<MergeJobState xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KanoonExamPdfServiceDb.Models"> <DownloadUrl>sample string 3</DownloadUrl> <FileName>sample string 6</FileName> <JobState>Success</JobState> <JobStateStr>sample string 4</JobStateStr> <PdfCheckStateUrl>sample string 5</PdfCheckStateUrl> <RequestKey>sample string 1</RequestKey> <Type>2</Type> </MergeJobState>