Skip to content

MngGetCalendarEvent

Returns one calendar event with participant rows.

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
      }
    ]
  }
}