Conference Logs
List conference logs
A list of Conferences.
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice or Video.
Learn more about API scopes.
get/api/logs/conferences
Query parameters
include_deletedboolean
Include logs for deleted activity.
created_onstring
Return logs for activity on this date. Accepts a date (YYYY-MM-DD) or ISO 8601 timestamp.
created_beforestring
Return logs for activity prior to this date. Accepts a date (YYYY-MM-DD) or ISO 8601 timestamp.
created_afterstring
Return logs for activity after this date. Accepts a date (YYYY-MM-DD) or ISO 8601 timestamp.
page_numberinteger
The page number to retrieve (0-indexed).
page_sizeinteger
Specify the number of results to return on a single page. The default page size is 50 and the maximum is 1000.
page_tokenstring
Token for cursor-based pagination. Required when page_number > 0.
Response
The request has succeeded.
Example response
{
"links": {
"self": "https://example.signalwire.com/api/logs/conferences?page_number=0&page_size=50",
"first": "https://example.signalwire.com/api/logs/conferences?page_size=50",
"next": "https://example.signalwire.com/api/logs/conferences?page_number=1&page_size=50&page_token=PAb9028451-b1d3-4690-b5d3-37b19d25f573",
"prev": "https://example.signalwire.com/api/logs/conferences?page_number=0&page_size=50&page_token=PBb9028451-b1d3-4690-b5d3-37b19d25f573"
},
"data": [
{
"created_at": "2025-03-11T01:49:49.630Z",
"region": "us1",
"name": "conference",
"status": "in-progress",
"max_size": 2,
"current_participants": 1,
"updated_at": "2025-03-12T01:49:49.630Z",
"type": "cxml_conference"
}
]
}