Calendar Detail

GET /api/calendar/detail

Returns the detail of a calendar event

Query parameters

  • id integer Required

    appointmentID

Responses

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": "2023-05-04T09:42:00+00:00",
  "requireRegistration": true,
  "createdDate": "2023-05-04T09:42:00+00:00",
  "startDate": "2023-05-04T09:42:00+00:00",
  "companyID": 42,
  "privateDocuments": true,
  "id": 42,
  "name": "string",
  "teamID": 42,
  "postCode": "string",
  "description": "string",
  "address": "string",
  "organiserID": 42
}