SignalWire Video Conferences API

Manage video conferences

Operations 5

POST /api/video/conferences Create video conference #
GET /api/video/conferences List video conferences #
GET /api/video/conferences/{id} Get video conference #
PUT /api/video/conferences/{id} Update video conference #
DELETE /api/video/conferences/{id} Delete video conference #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/signalwire-video-conferences-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

signalwire-video-conferences-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SignalWire REST Video Conferences API
  version: 1.0.0
  contact:
    name: SignalWire
    url: https://support.signalwire.com/portal/en/newticket?departmentId=1029313000000006907&layoutId=1029313000000074011
    email: support@signalwire.com
  license:
    name: MIT
    url: https://github.com/signalwire/docs/blob/main/LICENSE
  termsOfService: https://signalwire.com/legal/signalwire-cloud-agreement
  description: Manage video conferences
servers:
- url: https://{space_name}.signalwire.com
  description: SignalWire API
  variables:
    space_name:
      default: '{Your_Space_Name}'
      description: Your SignalWire Space name
security:
- SignalWireBasicAuth: []
tags:
- name: Video Conferences
  description: Manage video conferences
  externalDocs:
    url: https://signalwire.com/docs/apis
    description: Developer documentation on SignalWire REST APIs
paths:
  /api/video/conferences:
    post:
      operationId: create_video_conference
      summary: Create video conference
      description: 'Create a Video Conference.


        #### 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.'
      parameters: []
      responses:
        '200':
          description: Conference response wrapper.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.Conference'
        '400':
          description: The request is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode400'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode401'
        '422':
          description: The request contains invalid parameters. See errors for details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.VideoStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Video Conferences
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Video.CreateConferenceRequest'
    get:
      operationId: list_video_conferences
      summary: List video conferences
      description: 'List Video Conferences.


        #### 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.'
      parameters:
      - $ref: '#/components/parameters/Video.ListConferencesRequest.starts_after'
      - $ref: '#/components/parameters/Video.ListConferencesRequest.ends_before'
      - $ref: '#/components/parameters/Video.ListConferencesRequest.include_active_session'
      - $ref: '#/components/parameters/Video.ListConferencesRequest.page_number'
      - $ref: '#/components/parameters/Video.ListConferencesRequest.page_size'
      - $ref: '#/components/parameters/Video.ListConferencesRequest.page_token'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.ListConferencesResponse'
        '400':
          description: The request is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode400'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode401'
        '422':
          description: The request contains invalid parameters. See errors for details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.VideoStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Video Conferences
  /api/video/conferences/{id}:
    get:
      operationId: get_video_conference
      summary: Get video conference
      description: 'Find a Video Conference by ID.


        #### 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.'
      parameters:
      - $ref: '#/components/parameters/Video.ConferencePathID'
      - name: include_active_session
        in: query
        required: false
        description: Specifies whether to include information about the conference's active session (if any).
        schema:
          type: boolean
        explode: false
      responses:
        '200':
          description: Conference response wrapper.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.Conference'
        '400':
          description: The request is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode400'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode401'
        '404':
          description: The server cannot find the requested resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode404'
        '422':
          description: The request contains invalid parameters. See errors for details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.VideoStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Video Conferences
    put:
      operationId: update_video_conference
      summary: Update video conference
      description: 'Update a Video Conference.


        #### 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.'
      parameters:
      - $ref: '#/components/parameters/Video.ConferencePathID'
      responses:
        '200':
          description: Conference response wrapper.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.Conference'
        '400':
          description: The request is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode400'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode401'
        '404':
          description: The server cannot find the requested resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode404'
        '422':
          description: The request contains invalid parameters. See errors for details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video.VideoStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Video Conferences
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Video.UpdateConferenceRequest'
    delete:
      operationId: delete_video_conference
      summary: Delete video conference
      description: 'Delete a Video Conference.


        #### 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.'
      parameters:
      - $ref: '#/components/parameters/Video.ConferencePathID'
      responses:
        '204':
          description: 'There is no content to send for this request, but the headers may be useful. '
        '400':
          description: The request is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode400'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode401'
        '404':
          description: The server cannot find the requested resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode404'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Video Conferences
components:
  parameters:
    Video.ListConferencesRequest.ends_before:
      name: ends_before
      in: query
      required: false
      description: Return conferences with a `join_until` time on or before this timestamp. Accepts RFC 3339 datetime or Unix timestamp.
      schema:
        type: string
      explode: false
    Video.ConferencePathID:
      name: id
      in: path
      required: true
      description: Unique ID of the video conference.
      schema:
        $ref: '#/components/schemas/uuid'
    Video.ListConferencesRequest.page_number:
      name: page_number
      in: query
      required: false
      description: Page number to return. Requires `page_token` for values greater than 0.
      schema:
        type: integer
        format: int32
        minimum: 0
        default: 0
      explode: false
    Video.ListConferencesRequest.page_size:
      name: page_size
      in: query
      required: false
      description: Specify the number of results to return on a single page. The default page size is `50` and the maximum is `1000`.
      schema:
        type: integer
        format: int32
        minimum: 1
        maximum: 1000
        default: 50
      explode: false
    Video.ListConferencesRequest.starts_after:
      name: starts_after
      in: query
      required: false
      description: Return conferences with a `join_from` time on or after this timestamp. Accepts RFC 3339 datetime or Unix timestamp.
      schema:
        type: string
      explode: false
    Video.ListConferencesRequest.include_active_session:
      name: include_active_session
      in: query
      required: false
      description: Specifies whether to include information about the conference's active session (if any).
      schema:
        type: boolean
      explode: false
    Video.ListConferencesRequest.page_token:
      name: page_token
      in: query
      required: false
      description: Token for cursor-based pagination. Required when `page_number` is greater than 0.
      schema:
        type: string
      explode: false
  schemas:
    Video.CreateConferenceRequest:
      type: object
      required:
      - display_name
      properties:
        name:
          type: string
          maxLength: 100
          pattern: ^[A-Za-z0-9_-]+$
          description: 'A named unique identifier for the conference. Allowed characters: `A-Za-z0-9_-`. Maximum of 100 characters.'
          examples:
          - my_conference
        display_name:
          type: string
          maxLength: 200
          description: Display name of the video conference. Maximum of 200 characters.
          examples:
          - My Conference's Name
        description:
          type: string
          maxLength: 3000
          description: Description of the conference. Maximum of 3000 characters.
          examples:
          - This conference will be used for full company all hands meetings
        join_from:
          type: string
          format: date-time
          description: 'Conference does not accept new participants before this time. Expects RFC 3339 datetime: `2022-01-01T23:59:60Z`. Date only: `2022-01-01` will be converted to `2022-01-01T00:00:00Z`.'
          examples:
          - '2022-01-01T00:00:00Z'
        join_until:
          type: string
          format: date-time
          description: 'Conference stops accepting new participants at this time, but keeps running until all participants leave. Expects RFC 3339 datetime: `2022-01-01T23:59:60Z`. Date only: `2022-01-01` will be converted to `2022-01-01T00:00:00Z`.'
          examples:
          - '2022-12-31T23:59:59Z'
        quality:
          allOf:
          - $ref: '#/components/schemas/Video.VideoQuality'
          description: The conference's resolution.
          examples:
          - 720p
          default: 720p
        layout:
          allOf:
          - $ref: '#/components/schemas/Video.VideoLayout'
          description: The conference's initial layout.
          examples:
          - grid-responsive
          default: grid-responsive
        size:
          allOf:
          - $ref: '#/components/schemas/Video.ConferenceSize'
          description: The size of the video conference.
          examples:
          - medium
          default: medium
        record_on_start:
          type: boolean
          description: Whether to start recording when a conference session begins.
          examples:
          - true
        enable_room_previews:
          type: boolean
          description: Whether a preview video of the conference content is generated.
          examples:
          - true
        enable_chat:
          type: boolean
          description: Whether group chat is enabled for conference participants.
          examples:
          - true
          default: true
        dark_primary:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: CTA buttons and selected items color (dark theme).
          examples:
          - '#044EF4'
          default: '#044EF4'
        dark_background:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main background color (dark theme).
          examples:
          - '#FFFFFF'
          default: '#FFFFFF'
        dark_foreground:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main foreground color (dark theme).
          examples:
          - '#1D2127'
          default: '#1D2127'
        dark_success:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Success indication color (dark theme).
          examples:
          - '#17BB58'
          default: '#17BB58'
        dark_negative:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Error indication color (dark theme).
          examples:
          - '#F42C50'
          default: '#F42C50'
        light_primary:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: CTA buttons and selected items color (light theme).
          examples:
          - '#044EF4'
          default: '#044EF4'
        light_background:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main background color (light theme).
          examples:
          - '#FFFFFF'
          default: '#FFFFFF'
        light_foreground:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main foreground color (light theme).
          examples:
          - '#1D2127'
          default: '#1D2127'
        light_success:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Success indication color (light theme).
          examples:
          - '#17BB58'
          default: '#17BB58'
        light_negative:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Error indication color (light theme).
          examples:
          - '#F42C50'
          default: '#F42C50'
      unevaluatedProperties:
        not: {}
      description: Request body for creating a conference.
    Types.StatusCodes.StatusCode401:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Unauthorized
      unevaluatedProperties:
        not: {}
      description: Access is unauthorized.
    Types.StatusCodes.RestApiErrorItem:
      type: object
      required:
      - type
      - code
      - message
      - url
      properties:
        type:
          type: string
          description: The category of error.
          examples:
          - validation_error
        code:
          type: string
          description: A specific error code.
          examples:
          - invalid_parameter
        message:
          type: string
          description: A description of what caused the error.
          examples:
          - Name must be present
        attribute:
          anyOf:
          - type: string
          - type: 'null'
          description: The request parameter that caused the error, if applicable.
          examples:
          - name
        url:
          type: string
          description: A link to documentation about this error.
          examples:
          - https://signalwire.com/docs/apis/error-codes
      unevaluatedProperties:
        not: {}
      description: Details about a specific error.
    Video.ListConferencesResponse:
      type: object
      required:
      - links
      - data
      properties:
        links:
          allOf:
          - $ref: '#/components/schemas/Video.PaginationLinks'
          description: Pagination links.
        data:
          type: array
          items:
            $ref: '#/components/schemas/Video.Conference'
          description: List of conferences.
      unevaluatedProperties:
        not: {}
      description: List conferences response.
    Types.StatusCodes.StatusCode400:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Bad Request
      unevaluatedProperties:
        not: {}
      description: The request is invalid.
    Video.VideoQuality:
      type: string
      enum:
      - 720p
      - 1080p
      description: Video quality resolution.
    Video.ConferenceSize:
      type: string
      enum:
      - small
      - medium
      - large
      description: Conference size options.
    Types.StatusCodes.StatusCode404:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Not Found
      unevaluatedProperties:
        not: {}
      description: The server cannot find the requested resource.
    Video.RoomSessionStatus:
      type: string
      enum:
      - in-progress
      - completed
      description: Status of a room session.
    Video.Conference:
      type: object
      required:
      - id
      - name
      - display_name
      - description
      - join_from
      - join_until
      - quality
      - layout
      - size
      - record_on_start
      - tone_on_entry_and_exit
      - user_join_video_off
      - room_join_video_off
      - enable_chat
      - enable_room_previews
      - dark_primary
      - dark_background
      - dark_foreground
      - dark_success
      - dark_negative
      - light_primary
      - light_background
      - light_foreground
      - light_success
      - light_negative
      - meta
      - created_at
      - updated_at
      properties:
        id:
          allOf:
          - $ref: '#/components/schemas/uuid'
          description: Unique ID of the video conference.
          examples:
          - c22d24f6-5a47-4597-9a23-c7d01e696b92
        name:
          type: string
          description: 'A named unique identifier for the conference. Allowed characters: `A-Za-z0-9_-`.'
          examples:
          - my_conference
        display_name:
          anyOf:
          - type: string
          - type: 'null'
          description: Display name of the video conference. Maximum of 200 characters.
          examples:
          - My Conference's Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          description: Description of the conference. Maximum of 3000 characters.
          examples:
          - This conference will be used for full company all hands meetings
        join_from:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Conference does not accept new participants before this time.
          examples:
          - '2022-01-01T00:00:00Z'
        join_until:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Conference stops accepting new participants at this time, but keeps running until all participants leave.
          examples:
          - '2022-12-31T23:59:59Z'
        quality:
          allOf:
          - $ref: '#/components/schemas/Video.VideoQuality'
          description: The conference's resolution.
          examples:
          - 720p
        layout:
          allOf:
          - $ref: '#/components/schemas/Video.VideoLayout'
          description: The conference's initial layout.
          examples:
          - grid-responsive
        size:
          anyOf:
          - $ref: '#/components/schemas/Video.ConferenceSize'
          - type: 'null'
          description: The size of the video conference.
          examples:
          - medium
        record_on_start:
          type: boolean
          description: Whether to start recording when a conference session begins.
          examples:
          - false
        tone_on_entry_and_exit:
          type: boolean
          description: Whether a tone is played when a member enters or exits the conference.
          examples:
          - true
        user_join_video_off:
          type: boolean
          description: Whether participants join with video off by user setting.
          examples:
          - false
        room_join_video_off:
          type: boolean
          description: Whether participants join with video off by room setting.
          examples:
          - false
        enable_chat:
          type: boolean
          description: Whether group chat is enabled for conference participants.
          examples:
          - true
        enable_room_previews:
          anyOf:
          - type: boolean
          - type: 'null'
          description: Whether a preview video of the conference content is generated.
          examples:
          - false
        dark_primary:
          anyOf:
          - type: string
          - type: 'null'
          description: CTA buttons and selected items color (dark theme).
          examples:
          - '#044EF4'
        dark_background:
          anyOf:
          - type: string
          - type: 'null'
          description: Main background color (dark theme).
          examples:
          - '#FFFFFF'
        dark_foreground:
          anyOf:
          - type: string
          - type: 'null'
          description: Main foreground color (dark theme).
          examples:
          - '#1D2127'
        dark_success:
          anyOf:
          - type: string
          - type: 'null'
          description: Success indication color (dark theme).
          examples:
          - '#17BB58'
        dark_negative:
          anyOf:
          - type: string
          - type: 'null'
          description: Error indication color (dark theme).
          examples:
          - '#F42C50'
        light_primary:
          anyOf:
          - type: string
          - type: 'null'
          description: CTA buttons and selected items color (light theme).
          examples:
          - '#044EF4'
        light_background:
          anyOf:
          - type: string
          - type: 'null'
          description: Main background color (light theme).
          examples:
          - '#FFFFFF'
        light_foreground:
          anyOf:
          - type: string
          - type: 'null'
          description: Main foreground color (light theme).
          examples:
          - '#1D2127'
        light_success:
          anyOf:
          - type: string
          - type: 'null'
          description: Success indication color (light theme).
          examples:
          - '#17BB58'
        light_negative:
          anyOf:
          - type: string
          - type: 'null'
          description: Error indication color (light theme).
          examples:
          - '#F42C50'
        meta:
          anyOf:
          - type: object
            unevaluatedProperties: {}
          - type: 'null'
          description: User-defined metadata for the conference.
          examples:
          - null
        created_at:
          type: string
          format: date-time
          description: Timestamp when the conference was created.
          examples:
          - '2022-01-01T10:00:00Z'
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the conference was last updated.
          examples:
          - '2022-01-01T11:00:00Z'
        active_session:
          allOf:
          - $ref: '#/components/schemas/Video.ActiveSession'
          description: Active session information. Only present when requested via the `include_active_session` query parameter.
      unevaluatedProperties:
        not: {}
      description: Video conference response object.
    Video.VideoLayout:
      type: string
      enum:
      - grid-responsive
      - grid-responsive-mobile
      - highlight-1-responsive
      - 1x1
      - 2x1
      - 2x2
      - 5up
      - 3x3
      - 4x4
      - 5x5
      - 6x6
      - 8x8
      - 10x10
      description: Video room layout options.
    Video.UpdateConferenceRequest:
      type: object
      required:
      - display_name
      properties:
        display_name:
          type: string
          maxLength: 200
          description: Display name of the video conference. Maximum of 200 characters.
          examples:
          - My Conference's Name
        description:
          type: string
          maxLength: 3000
          description: Description of the conference. Maximum of 3000 characters.
          examples:
          - This conference will be used for full company all hands meetings
        join_from:
          type: string
          format: date-time
          description: 'Conference does not accept new participants before this time. Expects RFC 3339 datetime: `2022-01-01T23:59:60Z`. Date only: `2022-01-01` will be converted to `2022-01-01T00:00:00Z`.'
          examples:
          - '2022-01-01T00:00:00Z'
        join_until:
          type: string
          format: date-time
          description: 'Conference stops accepting new participants at this time, but keeps running until all participants leave. Expects RFC 3339 datetime: `2022-01-01T23:59:60Z`. Date only: `2022-01-01` will be converted to `2022-01-01T00:00:00Z`.'
          examples:
          - '2022-12-31T23:59:59Z'
        quality:
          allOf:
          - $ref: '#/components/schemas/Video.VideoQuality'
          description: The conference's resolution.
          examples:
          - 720p
          default: 720p
        layout:
          allOf:
          - $ref: '#/components/schemas/Video.VideoLayout'
          description: The conference's initial layout.
          examples:
          - grid-responsive
          default: grid-responsive
        size:
          allOf:
          - $ref: '#/components/schemas/Video.ConferenceSize'
          description: The size of the video conference.
          examples:
          - medium
          default: medium
        record_on_start:
          type: boolean
          description: Whether to start recording when a conference session begins.
          examples:
          - true
        tone_on_entry_and_exit:
          type: boolean
          description: Whether a tone is played when a member enters or exits the conference.
          examples:
          - true
        room_join_video_off:
          type: boolean
          description: Whether participants join with video off by room setting.
          examples:
          - false
        user_join_video_off:
          type: boolean
          description: Whether participants join with video off by user setting.
          examples:
          - false
        enable_room_previews:
          type: boolean
          description: Whether a preview video of the conference content is generated.
          examples:
          - true
        enable_chat:
          type: boolean
          description: Whether group chat is enabled for conference participants.
          examples:
          - true
        dark_primary:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: CTA buttons and selected items color (dark theme).
          examples:
          - '#044EF4'
        dark_background:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main background color (dark theme).
          examples:
          - '#FFFFFF'
        dark_foreground:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main foreground color (dark theme).
          examples:
          - '#1D2127'
        dark_success:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Success indication color (dark theme).
          examples:
          - '#17BB58'
        dark_negative:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Error indication color (dark theme).
          examples:
          - '#F42C50'
        light_primary:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: CTA buttons and selected items color (light theme).
          examples:
          - '#044EF4'
        light_background:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main background color (light theme).
          examples:
          - '#FFFFFF'
        light_foreground:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Main foreground color (light theme).
          examples:
          - '#1D2127'
        light_success:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Success indication color (light theme).
          examples:
          - '#17BB58'
        light_negative:
          type: string
          pattern: ^#[0-9a-fA-F]{6}$
          description: Error indication color (light theme).
          examples:
          - '#F42C50'
      unevaluatedProperties:
        not: {}
      description: Request body for updating a conference.
    Video.VideoFps:
      type: number
      enum:
      - 20
      - 30
      description: Video frames per second.
    Video.PaginationLinks:
      type: object
      required:
      - self
      - first
      properties:
        self:
          type: string
          description: Link to the current page.
          examples:
          - https://example.signalwire.com/api/video/rooms?page=2
        first:
          type: string
          description: Link to the first page.
          examples:
          - https://example.signalwire.com/api/video/rooms?page=1
        next:
          type: string
          description: Link to the next page.
          examples:
          - https://example.signalwire.com/api/video/rooms?page=3
        prev:
          type: string
          description: Link to the previous pa

# --- truncated at 32 KB (38 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/signalwire/refs/heads/main/openapi/signalwire-video-conferences-api-openapi.yml