updateScheduledJob

put

/ccadmin/v1/merchant/scheduledJobs

Update Scheduled Job. Updates scheduled job.

Request

Supported Media Types
  • application/json
Body Parameter
Root Schema : updateScheduledJob_request
Nested Schema : schedule
Type: object

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : updateScheduledJob_response
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 Request:

{
  "schedule": {"period": 6000000},
  "scheduleType": "periodic",
  "componentPath": "/atg/commerce/order/scheduled/ScheduledOrderService"
}

Sample Response Payload returned by endpoint:

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