Manage meeting room events from Archibus.
This operation allows external systems to create, update, or delete meeting room events from Archibus.
Headers
-
X-Correlation-Id string
Unique identifier to allow referencing a particular transaction or event chain
Minimum length is
1
.
Body Required
-
Values are
CREATED
,UPDATED
, orDELETED
.
POST /meeting-room-events/_actions/archibus/notification
curl \
-X POST https://api.development.pexipengage.com/enterprises/acme/meeting-room-events/_actions/archibus/notification \
-H "Content-Type: application/json" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" \
-H "X-Correlation-Id: a4f0048e-c983-11ed-afa1-0242ac120002" \
-d '{"changeType":"CREATED","event":{"id":"string","meetingRoomId":"string","start":"2022-08-17T09:00:00.000Z","end":"2022-08-17T10:00:00.000Z","createdAt":"2022-08-17T19:05:21.362Z","updatedAt":"2022-08-17T19:05:21.362Z"}}'
Request examples
# Headers
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
X-Correlation-Id: a4f0048e-c983-11ed-afa1-0242ac120002
# Payload
{
"changeType": "CREATED",
"event": {
"id": "string",
"meetingRoomId": "string",
"start": "2022-08-17T09:00:00.000Z",
"end": "2022-08-17T10:00:00.000Z",
"createdAt": "2022-08-17T19:05:21.362Z",
"updatedAt": "2022-08-17T19:05:21.362Z"
}
}