SignalWire Video Conferences API

Manage video conferences

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 email required.

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](/docs/platform/your-signalwire-api-space).'
      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](/docs/platform/your-signalwire-api-space).'
      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](/docs/platform/your-signalwire-api-space).'
      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](/docs/platform/your-signalwire-api-space).'
      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](/docs/platform/your-signalwire-api-space).'
      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:
  schemas:
    Types.StatusCodes.StatusCode401:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Unauthorized
      unevaluatedProperties:
        not: {}
      description: Access is unauthorized.
    Video.VideoFps:
      type: number
      enum:
      - 20
      - 30
      description: Video frames per second.
    Video.ActiveSession:
      type: object
      properties:
        id:
          type: string
          description: Unique ID of the session.
          examples:
          - c22d24f6-5a47-4597-9a23-c7d01e696b92
        room_id:
          type: string
          description: Unique ID of the Room if the Session was created from a Room and was not an auto-created Session.
          examples:
          - a1b2c3d4-5e6f-7890-abcd-ef1234567890
        name:
          type: string
          description: The named identifier of room session.
          examples:
          - my_example_room
        display_name:
          type: string
          description: Display name of room, no character limitations. Maximum of 200 characters. Defaults to the value of name.
          examples:
          - My Room's Name
        join_from:
          type: string
          format: date-time
          description: Room Session does not accept new Members before this time.
          examples:
          - '2022-01-01T00:00:00Z'
        join_until:
          type: string
          format: date-time
          description: Room Session stops accepting new Members at this time.
          examples:
          - '2022-12-31T23:59:59Z'
        remove_at:
          type: string
          format: date-time
          description: Remove Members from the Room Session at this time.
          examples:
          - '2022-12-31T23:59:59Z'
        remove_after_seconds_elapsed:
          type: integer
          format: int32
          description: Remove Members after they are in the Room Session for N seconds.
          examples:
          - 120
        layout:
          type: string
          description: The Room Session's initial layout. See documentation for a full list of supported layouts.
          examples:
          - grid-responsive
        max_members:
          type: integer
          format: int32
          description: The maximum number of members allowed in the room at a time.
          examples:
          - 20
        fps:
          allOf:
          - $ref: '#/components/schemas/Video.VideoFps'
          description: The Room Session's frames per second.
          examples:
          - 20
        quality:
          allOf:
          - $ref: '#/components/schemas/Video.VideoQuality'
          description: The Room Session's resolution.
          examples:
          - 720p
        start_time:
          type: string
          format: date-time
          description: Start time of the session.
          examples:
          - '2022-01-01T10:00:00Z'
        end_time:
          type: string
          format: date-time
          description: End time of the session.
          examples:
          - '2022-01-01T11:00:00Z'
        duration:
          type: integer
          format: int32
          description: How long, in seconds, the Room Session lasted.
          examples:
          - 120
        status:
          allOf:
          - $ref: '#/components/schemas/Video.RoomSessionStatus'
          description: Status of the session.
          examples:
          - completed
        record_on_start:
          type: boolean
          description: Whether a recording was automatically started when this Room Session began.
          examples:
          - true
        enable_room_previews:
          type: boolean
          description: Whether a video with a preview of the content of the room is to be generated.
          examples:
          - true
        preview_url:
          type: string
          description: If room previews are enabled and the room session is in progress, this is the URL of the preview video.
          examples:
          - https://example.signalwire.com/api/video/room_sessions/c22d24f6-5a47-4597-9a23-c7d01e696b92/preview
        audio_video_sync:
          type: boolean
          description: Enable/disable jitter buffer audio-video sync.
          examples:
          - true
      unevaluatedProperties:
        not: {}
      description: Active session information for a room.
    Types.StatusCodes.StatusCode400:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Bad Request
      unevaluatedProperties:
        not: {}
      description: The request is invalid.
    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.
    uuid:
      type: string
      format: uuid
      description: Universal Unique Identifier.
    Types.StatusCodes.StatusCode404:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Not Found
      unevaluatedProperties:
        not: {}
      description: The server cannot find the requested resource.
    Types.StatusCodes.StatusCode500:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Internal Server Error
      unevaluatedProperties:
        not: {}
      description: An internal server error occurred.
    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.
    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.VideoQuality:
      type: string
      enum:
      - 720p
      - 1080p
      description: Video quality resolution.
    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 page.
          examples:
          - https://example.signalwire.com/api/video/rooms?page=1
      unevaluatedProperties:
        not: {}
      description: Pagination links for list responses.
    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.RoomSessionStatus:
      type: string
      enum:
      - in-progress
      - completed
      description: Status of a room session.
    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.VideoStatusCode422:
      type: object
      required:
      - errors
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Types.StatusCodes.RestApiErrorItem'
          description: List of validation errors.
      unevaluatedProperties:
        not: {}
      description: The request contains invalid parameters. See errors for details.
      examples:
      - statusCode: 422
        errors:
        - type: validation_error
          code: invalid_parameter
          message: Name must be present
          attribute: name
          url: https://signalwire.com/docs/apis/error-codes
    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
 

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