Skip to content

MngGetCalendarEvent

Returns one calendar event with participant rows.

Requires see_notes with CRM or BackOffice access. Manager permissions and brand/desk scope are resolved from the cached staff manager record.

Request Data

Field Type Required Description
id int Yes Calendar event id

Response Data

Returns the full event object with participants. Example is shortened.

{
  "event": {
    "id": 1,
    "title": "Retention sync",
    "participants": [
      {
        "event_id": 1,
        "manager_id": 10,
        "role": 0,
        "status": 1
      }
    ]
  }
}