cURL
curl --request POST \ --url https://{primary_domain}/api/public/v2.0/online_conferences/{online_conference_id}/attendees \ --header 'Content-Type: application/json' \ --header 'X-Access-Key-Id: <api-key>' \ --header 'X-Access-Key-Secret: <api-key>' \ --data '[ { "name": "<string>", "email": "jsmith@example.com" } ]'
{ "message": "<string>", "data": [ { "id": 123, "online_conference_id": 123, "attendee_type": "App\\Models\\Tenant\\User", "attendee_id": 123, "name": "<string>", "email": "jsmith@example.com", "joined_at": "2023-11-07T05:31:56Z", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "deleted_at": "2023-11-07T05:31:56Z" } ] }
Required permissions: online_conferences.update.*
online_conferences.update.*
A User or Customer is automatically matched based on the OnlineConferenceAttendee's provided email.
The response is of type object.
object