get

View as MarkdownOpen in Claude

Retrieve a specific conference token.

Path parameters

idstringRequiredformat: "uuid"
Unique ID of the conference token.

Response

idstringRequiredformat: "uuid"
Unique identifier for the conference token.
namestring or nullRequired
Name of the conference token.
tokenstringRequired
Conference token's randomly generated sequence.
scopeslist of stringsRequired
List of permissions.

Response Example

Response
{
"id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",
"name": "My First Token",
"token": "vpt_62c65414de4d067d07415a7ced8183be",
"scopes": [
"room.member.audio_mute"
]
}

Example

from signalwire.rest import RestClient
client = RestClient(
project="your-project-id",
token="your-api-token",
host="your-space.signalwire.com",
)
token = client.video.conference_tokens.get("token-id")