For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
  • Core
    • Overview
    • Authorization
    • Base URL
    • Data formats
    • Paging
    • Error codes
    • Permissions
  • Calling
  • Datasphere
  • Logs
      • GETGet voice log
      • GETList voice log events
      • GETList voice logs
  • Messaging
  • Phone Number Management
  • Platform
  • Resource Management
LogoLogoSignalWire Docs
Log inSign up
Support
LogsVoice Logs

List voice log events

|View as Markdown|Open in Claude|
GET
https://{your_space_name}.signalwire.com/api/voice/logs/:id/events
GET
/api/voice/logs/:id/events
$curl https://{your_space_name}.signalwire.com/api/voice/logs/id/events \
> -u "<project_id>:<api_token>"
1{
2 "data": [
3 {
4 "event_at": "2024-05-06T12:20:00Z",
5 "level": "info",
6 "name": "calling_call_initiated",
7 "details": {},
8 "project_id": "b7182dc2-00f3-40e4-a5ce-20f164b329df",
9 "log_id": "b7182dc2-00f3-40e4-a5ce-20f164b329df"
10 }
11 ]
12}

List all events for a specific log.

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.

Learn more about API scopes.

Was this page helpful?
Previous

List voice logs

Next
Built with

Authentication

AuthorizationBasic

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)

Path parameters

idstringRequiredformat: "uuid"

Unique ID of the log. This is the segment_id you can find in Relay call details in your Dashboard UI or in return objects when using the SDK.

Response

The request has succeeded.
datalist of objects
Array of event entries for the log

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
422
Unprocessable Entity Error
500
Internal Server Error