123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- [role="xpack"]
- [testenv="platinum"]
- [[ml-post-calendar-event]]
- = Add events to calendar API
- ++++
- <titleabbrev>Add events to calendar</titleabbrev>
- ++++
- Posts scheduled events in a calendar.
- [[ml-post-calendar-event-request]]
- == {api-request-title}
- `POST _ml/calendars/<calendar_id>/events`
- [[ml-post-calendar-event-prereqs]]
- == {api-prereq-title}
- * If the {es} {security-features} are enabled, you must have `manage_ml` or
- `manage` cluster privileges to use this API. See
- <<security-privileges>> and {ml-docs-setup-privileges}.
- [[ml-post-calendar-event-desc]]
- == {api-description-title}
- This API accepts a list of {ml-docs}/ml-calendars.html[scheduled events], each
- of which must have a start time, end time, and description.
- [[ml-post-calendar-event-path-parms]]
- == {api-path-parms-title}
- `<calendar_id>`::
- (Required, string)
- include::../../ml-shared.asciidoc[tag=calendar-id]
- [role="child_attributes"]
- [[ml-post-calendar-event-request-body]]
- == {api-request-body-title}
- `events`::
- (Required, array) A list of one of more scheduled events. The event's start and
- end times may be specified as integer milliseconds since the epoch or as a
- string in ISO 8601 format.
- +
- .Properties of events
- [%collapsible%open]
- ====
- `description`:::
- (Optional, string) A description of the scheduled event.
- `end_time`:::
- (Required, date) The timestamp for the end of the scheduled event in
- milliseconds since the epoch or ISO 8601 format.
- `start_time`:::
- (Required, date) The timestamp for the beginning of the scheduled event in
- milliseconds since the epoch or ISO 8601 format.
- ====
- [[ml-post-calendar-event-example]]
- == {api-examples-title}
- [source,console]
- --------------------------------------------------
- POST _ml/calendars/planned-outages/events
- {
- "events" : [
- {"description": "event 1", "start_time": 1513641600000, "end_time": 1513728000000},
- {"description": "event 2", "start_time": 1513814400000, "end_time": 1513900800000},
- {"description": "event 3", "start_time": 1514160000000, "end_time": 1514246400000}
- ]
- }
- --------------------------------------------------
- // TEST[skip:setup:calendar_outages_addjob]
- The API returns the following results:
- [source,console-result]
- ----
- {
- "events": [
- {
- "description": "event 1",
- "start_time": 1513641600000,
- "end_time": 1513728000000,
- "calendar_id": "planned-outages"
- },
- {
- "description": "event 2",
- "start_time": 1513814400000,
- "end_time": 1513900800000,
- "calendar_id": "planned-outages"
- },
- {
- "description": "event 3",
- "start_time": 1514160000000,
- "end_time": 1514246400000,
- "calendar_id": "planned-outages"
- }
- ]
- }
- ----
|