List Attendees
GET/workstations/:workstation_id/meeting/attendees
List all attendees in the current meeting.
Request
Path Parameters
workstation_id uidrequired
The UID associated to a Workstation. Learn more
Responses
- 200
- 400
- 401
- 429
- 500
Successfully listed the set of attendees.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
object string
Possible values: [list
]
data
object[]
id int32required
The integer ID associated with a meeting attendee.
name stringrequired
The name of the attendee.
email stringrequired
The email of the attendee.
status MeetingAttendeeStatus (string)required
The status of the meeting attendee.
Possible values: [active
, inactive
]
createdAt date-timerequired
The creation time of the attendee.
{
"object": "list",
"data": [
{
"id": 0,
"name": "Alice",
"email": "alice@company.com",
"status": "active",
"createdAt": "2021-04-07T10:30:00Z"
}
]
}
Invalid Request Format - check API documentation for proper syntax.
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Unauthorized - missing or invalid API key.
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Too Many Requests - you have exceeded the rate limit for your account. Please wait before making additional requests.
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Internal Server Error - please retry your request.
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Loading...