Fetches all calendar events

Log in to see full request history
Path Params
number
required

Team ID

Query Params
string

Return events before this datetime (YYYY-MM-DD)

member_ids[]
array of numbers

Return events that include these members

member_ids[]
phase_ids[]
array of numbers

Return events that are in these phases

phase_ids[]
project_ids[]
array of numbers

Return events that are in these projects

project_ids[]
string

Return events after this datetime (YYYY-MM-DD)

string

Return events with the provided title

Responses
200

Success

Example response

id is the Calendar Event ID in this case


{
  calendar_events: [
    details: {
      description: "Example Description"
    },
    end_datetime: "2021-09-20T21:00:00.000-04:00",
    id: 1,
    member_ids: [
      1234,
      2345
    ],
    phase_id: 1234567,
    project_id: 123456,
    start_datetime: "2021-09-20T19:00:00.000-04:00",
    team_id: 12345,
    title: "Example Event",
  ]
}
401

Invalid Authentication Key and/or Team ID

Language
Credentials
Click Try It! to start a request and see the response here!