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
GuidesReference
GuidesReference
    • Core
      • Overview
    • Agents
      • Overview
      • AgentBase
      • AgentServer
      • BedrockAgent
      • CLI Tools
      • Configuration
      • ContextBuilder
      • DataMap
      • FunctionResult
      • Helper Functions
      • LiveWire
      • MCP Gateway
      • PomBuilder
      • Prefabs
      • Search
      • SkillBase
      • Skills
      • SWAIGFunction
      • SWMLBuilder
      • SWMLService
      • WebService
    • RELAY
      • Overview
      • Actions
      • Call
      • Constants
      • Events
      • Message
      • RelayClient
      • RelayError
    • REST Client
      • Overview
      • Addresses
      • Calling
      • Chat
      • Compat
      • Datasphere
      • Fabric
      • Imported Numbers
      • Logs
      • Lookup
      • MFA
      • Number Groups
      • Phone Numbers
      • Project
      • PubSub
      • Queues
      • Recordings
      • Registry
      • RestClient
      • Short Codes
      • SignalWireRestError
      • SIP Profile
      • Verified Callers
      • Video
        • VideoConferences
        • VideoConferenceTokens
          • get
          • reset
        • VideoRoomRecordings
        • VideoRooms
        • VideoRoomSessions
        • VideoRoomTokens
        • VideoStreams
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Response Example
  • Example
REST ClientVideoVideoConferenceTokens

reset

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

VideoRoomRecordings

Next
Built with

Reset a conference token, invalidating the current token and generating a new one.

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
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}

Example

1from signalwire.rest import RestClient
2
3client = RestClient(
4 project="your-project-id",
5 token="your-api-token",
6 host="your-space.signalwire.com",
7)
8
9result = client.video.conference_tokens.reset("token-id")