v1

latestOpenAPI 3.1.02026-07-14801408.6 KB

/events/:id

Returns date for the identified event. Required scope: r_jobs. Accessible with account tokens and user tokens.

get/events/{id}

Path parameters

idstring required

The id of the event

Response

200

idstring
titlestring
descriptionstring
typestring
starts_atstring
ends_atstring

Example response

{
  "id": "3ed9b6ad",
  "title": "Call with Steve Parks",
  "description": "We will call you on your cell",
  "type": "CallEvent",
  "starts_at": "2016-12-28T22:00:00.000Z",
  "ends_at": "2016-12-28T22:30:00.000Z",
  "job": {
    "shortcode": "GROOV005",
    "title": "Office Manager"
  },
  "members": [
    {
      "id": "3f8918be",
      "name": "Natalie Sung",
      "status": "needs-action"
    }
  ],
  "candidate": {
    "id": "34bc3e59",
    "name": "Steve Parks"
  },
  "conference": {
    "type": "zoom_meeting",
    "id": 1100001,
    "url": "https://zoom.us/j/1100001"
  }
}