Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a specific conference token.
format: "uuid"
1{2 "id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",3 "name": "My First Token",4 "token": "vpt_62c65414de4d067d07415a7ced8183be",5 "scopes": [6 "room.member.audio_mute"7 ]8}
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com",7});89const token = await client.video.conferenceTokens.get("token-id");