start
- start manual event; stop
- stop event.// no content
// PATCH /api/v2/events/2e9ddb8b-1ed0-4887-840a-9b37197a26e7// Host: environment.lvis.io// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb// Content-Type: application/vnd.api+json​{"data": {"type": "events","id": "126cd46d-02db-4369-84af-922cd0a8846b","attributes": {"name": "Upcoming Event","duration": 1800,"start_at": 1458927300,"start_at_iso": "2016-03-25T17:35:00Z","start_mode": "clock","repeat": true,"repeat_in": 60,"settings": [{"key": "hold_prompt","values": {"en": "On hold..."}},{"key": "number_of_users","values": {"all" : 6}}]}}}
// Status: 204 No Content
curl --request PATCH \--url https://environment.lvis.io/api/v2/events/2e9ddb8b-1ed0-4887-840a-9b37197a26e7 \--header 'Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb' \--header 'Content-Type: application/vnd.api+json' \--data '{"data": {"type": "events","id": "126cd46d-02db-4369-84af-922cd0a8846b","attributes": {"name": "Upcoming Event","duration": 1800,"start_at": 1458927300,"start_at_iso": "2016-03-25T17:35:00Z","start_mode": "clock","repeat": true,"repeat_in": 60,"settings": [{"key": "hold_prompt","values": {"en": "On hold..."}},{"key": "number_of_users","values": {"all" : 6}}]}}}'
An example how to start a manual event.
// PATCH /api/v2/events/2e9ddb8b-1ed0-4887-840a-9b37197a26e7// Host: environment.lvis.io// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb// Content-Type: application/vnd.api+json​{"data": {"id": "2e9ddb8b-1ed0-4887-840a-9b37197a26e7","type": "events","attributes": {"action": "start"}}}
// Status: 204 No Content
// PATCH /api/v2/events/7540ec1e-49b0-4283-9e37-e11624644fc1// Host: environment.lvis.io// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb// Content-Type: application/vnd.api+json​{"data": {"id": "7540ec1e-49b0-4283-9e37-e11624644fc1","type": "events","attributes": {"action": "stop"}}}
// Status: 422 Unprocessable Entity​{"errors": [{"source": {"pointer": "/data/attributes/action"},"detail": "cannot stop event"}]}