Conference Tokens

List conference tokens

Lists the guest and moderator access tokens issued for one managed Video Conference. These credentials grant access to the hosted conference experience; use Create room token for an SDK-based Video Room instead.

Permissions

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

Learn more about API scopes.

get/api/video/conferences/{id}/conference_tokens

Path parameters

idstring uuid required

Universal Unique Identifier.

Unique ID of the video conference.

Query parameters

page_numberinteger

Page number to return. Requires page_token for values greater than 0.

page_sizeinteger

Specify the number of results to return on a single page. The default page size is 50 and the maximum is 1000.

page_tokenstring

Token for cursor-based pagination. Required when page_number is greater than 0.

Response

The request has succeeded.

Example response

{
  "links": {
    "self": "https://example.signalwire.com/api/video/rooms?page=2",
    "first": "https://example.signalwire.com/api/video/rooms?page=1",
    "next": "https://example.signalwire.com/api/video/rooms?page=3",
    "prev": "https://example.signalwire.com/api/video/rooms?page=1"
  },
  "data": [
    {
      "name": "My First Token",
      "token": "vpt_62c65414de4d067d07415a7ced8183be",
      "scopes": [
        "room.member.audio_mute"
      ]
    }
  ]
}

Changes

No changes found, but 3 of the 161 revisions have a changelog that could not be searched — this endpoint may have changed in one of them.