POST api/GetScheduledJobByType
Get all scheduled jobs
Request Information
Payload
| Name | Payload Parameters | Additional information |
|---|---|---|
| Parameters |
None. |
Response Information
Response body formats
application/json, text/json
{
"ScheduledJobId": 1,
"JobType": 0,
"LastProcessedDate": "2025-11-04T09:23:58.9107054+00:00",
"NextProcessDate": "2025-11-04T09:23:58.9107054+00:00",
"IntegrationBaseURL": "sample string 2",
"IntegrationUserName": "sample string 3",
"IntegrationPassword": "sample string 4",
"IntegrationToken": "sample string 5",
"Status": 0,
"IntervalType": 0,
"IntervalDuration": 6.1,
"OutputFileLocation": "sample string 7",
"AdditionalData": "sample string 8"
}
text/html
{"ScheduledJobId":1,"JobType":0,"LastProcessedDate":"2025-11-04T09:23:58.9107054+00:00","NextProcessDate":"2025-11-04T09:23:58.9107054+00:00","IntegrationBaseURL":"sample string 2","IntegrationUserName":"sample string 3","IntegrationPassword":"sample string 4","IntegrationToken":"sample string 5","Status":0,"IntervalType":0,"IntervalDuration":6.1,"OutputFileLocation":"sample string 7","AdditionalData":"sample string 8"}
application/xml, text/xml
<ScheduledJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Carval.SelfService.BLL.Common"> <AdditionalData>sample string 8</AdditionalData> <IntegrationBaseURL>sample string 2</IntegrationBaseURL> <IntegrationPassword>sample string 4</IntegrationPassword> <IntegrationToken>sample string 5</IntegrationToken> <IntegrationUserName>sample string 3</IntegrationUserName> <IntervalDuration>6.1</IntervalDuration> <IntervalType>Min</IntervalType> <JobType>None</JobType> <LastProcessedDate>2025-11-04T09:23:58.9107054+00:00</LastProcessedDate> <NextProcessDate>2025-11-04T09:23:58.9107054+00:00</NextProcessDate> <OutputFileLocation>sample string 7</OutputFileLocation> <ScheduledJobId>1</ScheduledJobId> <Status>None</Status> </ScheduledJob>