Skip to main content
GET
/
v2
/
webrtc
/
tokens
List widget tokens
curl --request GET \
  --url https://api.wavix.com/v2/webrtc/tokens \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "sip_trunk": "my-sip-trunk",
      "payload": {},
      "ttl": 3600
    }
  ],
  "pagination": {
    "current_page": 2,
    "per_page": 25,
    "total": 101,
    "total_pages": 5
  }
}

Authorizations

Authorization
string
header
required

Wavix API key. Pass as Authorization: Bearer <api_key>. Keys support per-resource scopes (none / read / write). See Restricted keys and scopes.

Response

List of active widget tokens.

items
WebRtcToken · object[]
pagination
Pagination · object