Calendar Detail

GET /api/calendar/detail

Returns the detail of a calendar event

Query parameters

  • id integer Required

    appointmentID

Responses

  • default application/json

    Get user

    Hide response attributes Show response attributes object
    • security string
    • categoryID integer
    • permissions object

      Additional properties are allowed.

      Hide permissions attributes Show permissions attributes object
      • view boolean
      • edit boolean
      • admin boolean
      • delete boolean
    • appointmentType string
    • createdBy integer
    • endDate string(date-time)
    • requireRegistration boolean
    • createdDate string(date-time)
    • startDate string(date-time)
    • companyID integer
    • privateDocuments boolean
    • id integer
    • name string
    • teamID integer
    • postCode string
    • description string
    • address string
    • organiserID integer
GET /api/calendar/detail
curl \
 --request GET 'http://api.example.com/api/calendar/detail?id=42' \
 --header "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": "2025-05-04T09:42:00Z",
  "requireRegistration": true,
  "createdDate": "2025-05-04T09:42:00Z",
  "startDate": "2025-05-04T09:42:00Z",
  "companyID": 42,
  "privateDocuments": true,
  "id": 42,
  "name": "string",
  "teamID": 42,
  "postCode": "string",
  "description": "string",
  "address": "string",
  "organiserID": 42
}