getSearchSchedule

get

/ccadmin/v1/search/schedule

Get Search Schedule. Return a representation of the recurring baseline index schedule, if any. The returned properties correspond to values from the backing atg.service.scheduler.CalendarSchedule instance.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getSearchSchedule_response
Example application/json

{
    "occurrences":"*",
    "hours":"1",
    "months":"*",
    "parseString":"* * * * * 35",
    "minutes":"35",
    "daysOfMonth":"*",
    "timeZone":"PST",
    "daysOfWeek":"*"
}
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:

{
  "occurrences": "*",
  "hours": "1",
  "months": "*",
  "parseString": "* * * * * 35",
  "minutes": "35",
  "daysOfMonth": "*",
  "timeZone": "PST",
  "daysOfWeek": "*"
}