Meeting attendees
Information on attendees for a meeting
Accept header for requests to Meeting attendees
application/vnd.procurios.meeting2+json; version=1
All attendees for meeting GET
URL: /l/meeting2_api/meetings/42/attendees
Scope:
Last used: Never
Get the list of all attendees for the given meeting
Attendee schema for meeting GET
URL: /l/meeting2_api/meetings/42/attendees/schema
Scope:
Last used: Never
Get a JSON schema for an attendee, given the specified meeting
Update presence PUT
URL: /l/meeting2_api/meetings/42/attendees/1978/presence
Scope:
Last used: Never
Update the presence of an attendee (relation ID 1978) of a meeting (meeting ID 42); Scope needed: meeting2/presence/write
Validation
{
"$schema": "http:\/\/json-schema.org\/draft-07\/schema#",
"title": "Attendee presence schema (PUT)",
"type": "object",
"properties": {
"presence": {
"title": "Presence",
"type": "integer",
"enum": [
1,
0
],
"enumNames": {
"1": "Yes, present",
"0": "No, absent"
}
}
},
"required": [
"presence"
]
}
Schema for updating presence GET
URL: /l/meeting2_api/meetings/attendees/schema/presence/put
Scope:
Last used: Never
Get a JSON schema for updating the presence of an attendee for the the specified meeting; Scope needed: meeting2/presence/write