v1
latestOpenAPI 3.1.02026-07-14801408.6 KB/events
Returns a collection of events. Required scope: r_jobs. Accessible with account tokens and user tokens.
Query parameters
Returns events of the provided type. Available types are (call, interview & meeting)
Specifies the number of jobs to try and retrieve per page (optional)
Returns results with an ID greater than or equal to the specified ID. (optional)
Returns results with an ID less than or equal to the specified ID. (optional)
Returns events that are scheduled for after the specified date
Returns events that are scheduled for before the specified date
Filters events for specified candidate
Filters events for specified job shortcode
Filters events for specified member
Specifies the source of the events fetched (applicable only for user tokens) user: Events the user is attending (default). team: All events that are for candidates in jobs the user is collaborating in. all: All scheduled events in the account for candidates the user has access to.
When set true will also include cancelled events
Response
200
Example response
{
"events": [
{
"id": "4770c5c",
"title": "Interview with",
"type": "InterviewEvent",
"starts_at": "2017-01-17T22:00:00.000Z",
"ends_at": "2017-01-17T22:30:00.000Z",
"job": {
"shortcode": "GROOV001",
"title": "Operations Manager"
},
"members": [
{
"id": "3f8918be",
"name": "Natalie Sung",
"status": "accepted"
}
],
"candidate": {
"id": "3189bacb",
"name": "Lakita Marrero"
}
}
]
}