Create a calendar Added in 6.2.0

PUT /_ml/calendars/{calendar_id}

Path parameters

  • calendar_id string Required

    A string that uniquely identifies a calendar.

application/json

Body

  • job_ids array[string]

    An array of anomaly detection job identifiers.

  • A description of the calendar.

Responses

PUT /_ml/calendars/{calendar_id}
curl \
 -X PUT http://api.example.com/_ml/calendars/{calendar_id} \
 -H "Content-Type: application/json" \
 -d '{"job_ids":["string"],"description":"string"}'
Request examples
{
  "job_ids": [
    "string"
  ],
  "description": "string"
}
Response examples (200)
{
  "calendar_id": "string",
  "description": "string",
  "": "string"
}