getScheduledJob

get

/ccadmin/v1/merchant/scheduledJobs

Get Scheduled Job. Gets the scheduled job setting.

Request

Supported Media Types
  • application/json
Query Parameters
id
Type: string
Required: true
Job id of schedule

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getScheduledJob_response
Nested Schema : schedule
Type: object
Example application/json

{
    "schedule":{
        "period":60000
    },
    "scheduleDescription":"every 100 minutes without catch up",
    "scheduleType":"periodic"
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{
  "schedule": {"period": 60000},
  "scheduleDescription": "every 100 minutes without catch up",
  "scheduleType": "periodic"
}