GET/calendarevents/{eventId}/availablePeople.json
Get available People for a Calendar Event
If it is a new event, event ID will be 0, otherwise pass in the event ID you want to add attendees too.
Privacy type parameter must be passed in here. Options are:
- private
- company
- project (if this is passed in, you should pass in the project ID also. Otherwise it will return all people in all projects that you are associated with).
Path Params
- Name
eventId
- Type
- string
- required
- Description
Query Params
- Name
privacy
- Type
- string
- required
- Description
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
application/json
{
"people": [
{
"first-name": "Holly",
"avatar-url": "hello.jpg",
"company-name": "Teamwork.com",
"id": "1",
"email": "holly@teamwork.com",
"last-name": "Bracken",
"company-id": "1",
"title": "Developer"
}
]
}