GET
/
online_conferences
/
{online_conference_id}
/
attendees
curl --request GET \
  --url https://{primary_domain}/api/public/v2.0/online_conferences/{online_conference_id}/attendees \
  --header 'X-Access-Key-Id: <api-key>' \
  --header 'X-Access-Key-Secret: <api-key>'
{
  "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"
    }
  ],
  "current_page": 123,
  "first_page_url": "<string>",
  "from": 123,
  "last_page": 123,
  "last_page_url": "<string>",
  "next_page_url": "<string>",
  "path": "<string>",
  "per_page": 123,
  "prev_page_url": "<string>",
  "to": 123,
  "total": 123
}

Authorizations

X-Access-Key-Id
string
header
required
X-Access-Key-Secret
string
header
required

Path Parameters

online_conference_id
integer
required

Response

200
application/json

The response is of type object.