Query parameters
-
appointmentID
GET /api/calendar/detail
curl \
-X GET http://api.example.com/api/calendar/detail?id=42 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
{
"security": "public",
"categoryID": 42,
"permissions": {
"view": true,
"edit": false,
"admin": false,
"delete": false
},
"appointmentType": "string",
"createdBy": 42,
"endDate": "2024-05-04T09:42:00+00:00",
"requireRegistration": true,
"createdDate": "2024-05-04T09:42:00+00:00",
"startDate": "2024-05-04T09:42:00+00:00",
"companyID": 42,
"privateDocuments": true,
"id": 42,
"name": "string",
"teamID": 42,
"postCode": "string",
"description": "string",
"address": "string",
"organiserID": 42
}