Get calendar configuration info Added in 6.2.0
Path parameters
-
A string that uniquely identifies a calendar. You can get information for multiple calendars by using a comma-separated list of ids or a wildcard expression. You can get information for all calendars by using
_all
or*
or by omitting the calendar identifier.
POST /_ml/calendars/{calendar_id}
curl \
-X POST http://api.example.com/_ml/calendars/{calendar_id} \
-H "Content-Type: application/json" \
-d '{"page":{"from":42.0,"size":42.0}}'
Request examples
{
"page": {
"from": 42.0,
"size": 42.0
}
}
Response examples (200)
{
"calendars": [
{
"calendar_id": "string",
"description": "string",
"job_ids": [
"string"
]
}
],
"count": 42.0
}