Users
List User Online Conference Accounts
Online Conferences
- GETList Online Conferences
- POSTCreate Online Conference
- GETGet Online Conference
- DELDelete Online Conference
- PATCHUpdate Online Conference
- GETList Online Conference Attendees
- POSTCreate Online Conference Attendees
- DELDelete Online Conference Attendee
- POSTGenerate Online Conference Attendee Join Token
- GETList Online Conference Recordings
- GETGet Online Conference Recording Temporary URL
Users
List User Online Conference Accounts
Required permissions: users.read.*
GET
/
users
/
{user_id}
/
online_conference_accounts
curl --request GET \
--url https://{primary_domain}/api/public/v2.0/users/{user_id}/online_conference_accounts \
--header 'X-Access-Key-Id: <api-key>' \
--header 'X-Access-Key-Secret: <api-key>'
{
"message": "<string>",
"data": [
{
"id": 123,
"owner_type": "App\\Models\\Tenant\\User",
"owner_id": 123,
"connected_account_id": 123,
"name": "<string>",
"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
}
Path Parameters
Response
200
application/json
The response is of type object
.
curl --request GET \
--url https://{primary_domain}/api/public/v2.0/users/{user_id}/online_conference_accounts \
--header 'X-Access-Key-Id: <api-key>' \
--header 'X-Access-Key-Secret: <api-key>'
{
"message": "<string>",
"data": [
{
"id": 123,
"owner_type": "App\\Models\\Tenant\\User",
"owner_id": 123,
"connected_account_id": 123,
"name": "<string>",
"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
}