GET api/Facility/GetScheduledJobStatus
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of JobStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| strLogName | string |
None. |
|
| strServerName | string |
None. |
|
| boolStatus | boolean |
None. |
|
| strDate | string |
None. |
|
| strError | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"strLogName": "sample string 1",
"strServerName": "sample string 2",
"boolStatus": true,
"strDate": "sample string 4",
"strError": "sample string 5"
},
{
"strLogName": "sample string 1",
"strServerName": "sample string 2",
"boolStatus": true,
"strDate": "sample string 4",
"strError": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfFacilityModel.JobStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<FacilityModel.JobStatus>
<boolStatus>true</boolStatus>
<strDate>sample string 4</strDate>
<strError>sample string 5</strError>
<strLogName>sample string 1</strLogName>
<strServerName>sample string 2</strServerName>
</FacilityModel.JobStatus>
<FacilityModel.JobStatus>
<boolStatus>true</boolStatus>
<strDate>sample string 4</strDate>
<strError>sample string 5</strError>
<strLogName>sample string 1</strLogName>
<strServerName>sample string 2</strServerName>
</FacilityModel.JobStatus>
</ArrayOfFacilityModel.JobStatus>