Get Schedule method
Use the Get Schedule method to get the specified schedule for a service.
HTTP method: GET
URI: /scheduler/connection_name/schedule_id
Request payload content type: None
Response payload content type: application/xml
Expected response: HTTP/1.1 200 OK
Parameters
The method URI contains the following parameter(s):
| Name | Description | Required |
|---|---|---|
| connection_name | Enter the name that identifies the Optim™ directory connection that contains the schedule. | Y |
| schedule_id | Enter the schedule ID that identifies the schedule you want to see. | Y |
Response payload example
The following example shows a schedule to run a service on Thursday, August 1, 2013 at 17:30:00 UTC time (epoch time 1375378200000 in milliseconds). The format of the response payload for the Get Schedule method is similar to the request payload for the Add Schedule or Update Schedule methods.<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:schedule xmlns:ns2="http://www.ibm.com/optim/xsd/scheduler/9.1.0">
<id>fbf1cdd5-bdf7-4682-96ad-722672af0001</id>
<serviceId>783015a5-5ad4-43a8-b3be-a45acaba081a</serviceId>
<startDate>1375378200000</startDate>
<endDate>0</endDate>
<repeatCount>0</repeatCount>
<repeatInterval>0</repeatInterval>
<schedulerTaskType>SOA_SERVICE</schedulerTaskType>
<proxyURL>http://servercomputer:12000/</proxyURL>
</ns2:schedule>The following example shows a request
to schedule the service to run on Thursday, August 1, 2013 at 17:30:00
UTC time. The cron expression sets the schedule to repeat every Thursday
afterward at 17:30:00 local time.<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:schedule xmlns:ns2="http://www.ibm.com/optim/xsd/scheduler/9.1.0">
<id>fbf1cdd5-bdf7-4682-96ad-722672af0002</id>
<serviceId>783015a5-5ad4-43a8-b3be-a45acaba081a</serviceId>
<startDate>1375378200000</startDate>
<endDate>0</endDate>
<cronExpression>0 30 17 ? * THU</cronExpression>
<schedulerTaskType>SOA_SERVICE</schedulerTaskType>
<proxyURL>http://servercomputer:12000/</proxyURL>
</ns2:schedule>Response codes
The following response codes can be received when the method is complete:
| Response code | Description |
|---|---|
| 200 | OK. The schedule was successfully returned. |
| 400 | Bad Request. A malformed request was submitted. |
| 404 | Not Found. The schedule does not exist. |