Create a Schedule Using Oracle Managed Storage
Submit the extract job using the Job Scheduler API.
| Attribute | Value |
|---|---|
| URL | /api/saas-batch/jobscheduler/v1/jobRequests |
| HTTP Method | POST |
Request
Example Request
{
"serviceName": "boss",
"jobDefinitionName": "DataExport",
"description": "TESTEXT2411-Incemental::TESTEXT2411::Incremental::Hourly",
"requestParameters": {
"submit.argument1": "TESTEXT2411",
"submit.argument2": "Incremental Data Extract"
},
"runAtTimes": {
"fixedInterval": { "interval": 1, "timeUnit": "HOUR" },
"startDate": "12/16/2025",
"endDate": "12/16/2025",
"startTime": "1930",
"endTime": "2230"
}
}
Response
On successful submission, a 202 Accepted response is returned along with the Location header pointing to the created job request resource.
202 Accepted
Location: https://example.com/api/saas-batch/jobscheduler/v1/jobRequests/{jobRequestId}