SignalWire Conference Rooms API

Endpoints related to creating & managing Conference Rooms

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-conference-rooms-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-conference-rooms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SignalWire REST Conference Rooms 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: Endpoints related to creating & managing Conference Rooms
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: Conference Rooms
  description: Endpoints related to creating & managing Conference Rooms
  externalDocs:
    url: https://signalwire.com/docs/apis
    description: Developer documentation on Conference Room, Fabric API endpoints
paths:
  /api/fabric/resources/conference_room/{id}/addresses:
    get:
      operationId: list_conference_room_addresses
      summary: List conference room Addresses
      description: 'This endpoint returns a list of addresses associated with a specific Conference Room.


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters:
      - $ref: '#/components/parameters/ConferenceRoomAddressPathID'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConferenceRoomAddressListResponse'
        '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:
      - Conference Rooms
  /api/fabric/resources/conference_rooms:
    get:
      operationId: list_conference_rooms
      summary: List conference rooms
      description: 'Returns a list of conference rooms.


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConferenceRoomListResponse'
        '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:
      - Conference Rooms
    post:
      operationId: create_conference_room
      summary: Create conference room
      description: 'Creates a Conference Room


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConferenceRoomResponse'
        '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/ConferenceRoomCreateStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Conference Rooms
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConferenceRoomCreateRequest'
  /api/fabric/resources/conference_rooms/{id}:
    get:
      operationId: get_conference_room
      summary: Get conference room
      description: 'Returns a Conference Room by ID


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters:
      - $ref: '#/components/parameters/ConferenceRoomPathID'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConferenceRoomResponse'
        '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:
      - Conference Rooms
    put:
      operationId: update_conference_room
      summary: Update conference room
      description: 'Updates a Conference Room by ID


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters:
      - $ref: '#/components/parameters/ConferenceRoomPathID'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConferenceRoomResponse'
        '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/ConferenceRoomUpdateStatusCode422'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Types.StatusCodes.StatusCode500'
      tags:
      - Conference Rooms
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConferenceRoomUpdateRequest'
    delete:
      operationId: delete_conference_room
      summary: Delete conference room
      description: 'Deletes a Conference Room by ID


        #### Permissions


        The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_.


        [Learn more about API scopes](/docs/platform/your-signalwire-api-space).'
      parameters:
      - $ref: '#/components/parameters/ConferenceRoomPathID'
      responses:
        '204':
          description: 'There is no content to send for this request, but the headers may be useful. '
        '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:
      - Conference Rooms
components:
  schemas:
    ConferenceRoomAddressListResponse:
      type: object
      required:
      - data
      - links
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/FabricAddressRoom'
          description: An array of objects containing list of Conference Room Addresses
        links:
          allOf:
          - $ref: '#/components/schemas/ConferenceRoomAddressPaginationResponse'
          description: Object containing pagination links
      unevaluatedProperties:
        not: {}
    Types.StatusCodes.StatusCode401:
      type: object
      required:
      - error
      properties:
        error:
          type: string
          enum:
          - Unauthorized
      unevaluatedProperties:
        not: {}
      description: Access is unauthorized.
    ConferenceRoomCreateRequest:
      type: object
      required:
      - name
      - enable_room_previews
      properties:
        name:
          type: string
          description: The name of the Conference Room
          examples:
          - coffee_cafe
        display_name:
          type: string
          maxLength: 200
          description: Display name of the Conference Room
          examples:
          - Reception
        description:
          type: string
          maxLength: 3000
          description: The descrption of the Conference Room
          examples:
          - This room is for coffee, no shop talk
        join_from:
          type: string
          format: date-time
          description: The time users are allowed to start joining the conference. Joining before this time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        join_until:
          type: string
          format: date-time
          description: The time users are allowed to until the conference is locked. Attempting to join the conference after the set time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        max_members:
          type: integer
          format: int32
          minimum: 0
          maximum: 300
          description: Maximum number of members allowed in the conference room
          examples:
          - 30
        quality:
          type: string
          enum:
          - 1080p
          - 720p
          description: The viudeo quality of the Conference Room.
          examples:
          - 1080p
          default: 720p
        remove_at:
          type: string
          format: date-time
          description: The time to remove all participants from the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        remove_after_seconds_elapsed:
          type: integer
          format: int32
          minimum: 0
          maximum: 200000
          description: The amount of time in seconds to remove a particpant from a conference after they join.
        layout:
          allOf:
          - $ref: '#/components/schemas/Layout'
          description: The video layout of the conference.
          examples:
          - grid-responsive
        record_on_start:
          type: boolean
          description: Starts recording when the conference starts.
          examples:
          - true
        enable_room_previews:
          type: boolean
          description: Enables live video room previews for the conference.
          examples:
          - true
        meta:
          type: object
          unevaluatedProperties: {}
          description: Metadata of the conference.
          examples:
          - foo: bar
        sync_audio_video:
          type: boolean
          description: Syncs the participants audio and video.
          examples:
          - true
        tone_on_entry_and_exit:
          type: boolean
          description: Plays a tone when a participant joins or leaves the conference.
          examples:
          - true
        room_join_video_off:
          type: boolean
          description: Turns the conference video off when the participant joins the room if `true`.
          examples:
          - true
        user_join_video_off:
          type: boolean
          description: Turns the participants video off when the participant joins the room if `true`.
          examples:
          - true
      unevaluatedProperties:
        not: {}
    FabricAddressRoom:
      type: object
      required:
      - id
      - name
      - display_name
      - cover_url
      - preview_url
      - locked
      - channels
      - created_at
      - type
      properties:
        id:
          allOf:
          - $ref: '#/components/schemas/uuid'
          description: Unique ID of the Fabric Address.
          examples:
          - 691af061-cd86-4893-a605-173f47afc4c2
        name:
          type: string
          description: Name of the Fabric Address.
          examples:
          - justice-league
        display_name:
          type: string
          description: Display name of the Fabric Address.
          examples:
          - Justice League
        cover_url:
          type: string
          description: Cover url of the Fabric Address.
          examples:
          - https://coverurl.com
        preview_url:
          type: string
          description: Preview url of the Fabric Address.
          examples:
          - https://previewurl.com
        locked:
          type: boolean
          description: Locks the Fabric Address. This is used to prevent the Fabric Address from accepting calls.
          examples:
          - true
        channels:
          allOf:
          - $ref: '#/components/schemas/AddressChannel'
          description: Channels of the Fabric Address.
        created_at:
          type: string
          format: date-time
          description: Fabric Address Creation Date.
          examples:
          - '2024-05-06T12:20:00Z'
        type:
          type: string
          enum:
          - room
          description: The display type of a fabric address pointing to a Conference Room.
          examples:
          - room
      unevaluatedProperties:
        not: {}
      title: Room Address
    ConferenceRoomListResponse:
      type: object
      required:
      - links
      - data
      properties:
        links:
          allOf:
          - $ref: '#/components/schemas/ConferenceRoomAddressPaginationResponse'
          description: Object containing pagination links
        data:
          type: array
          items:
            $ref: '#/components/schemas/ConferenceRoomResponse'
          description: An array of objects containing the Conference Room data
      unevaluatedProperties:
        not: {}
    ConferenceRoomResponse:
      type: object
      required:
      - id
      - project_id
      - display_name
      - type
      - created_at
      - updated_at
      - conference_room
      properties:
        id:
          allOf:
          - $ref: '#/components/schemas/uuid'
          description: Unique ID of the Conference Room.
          examples:
          - 993ed018-9e79-4e50-b97b-984bd5534095
        project_id:
          allOf:
          - $ref: '#/components/schemas/uuid'
          description: Unique ID of the Project.
          examples:
          - 1313fe58-5e14-4c11-bbe7-6fdfa11fe780
        display_name:
          type: string
          description: Display name of the Conference Room Fabric Resource
          examples:
          - Reception
        type:
          type: string
          enum:
          - video_room
          description: Type of the Fabric Resource
          examples:
          - video_room
        created_at:
          type: string
          format: date-time
          description: Date and time when the resource was created.
          examples:
          - '2024-05-06T12:20:00Z'
        updated_at:
          type: string
          format: date-time
          description: Date and time when the resource was updated.
          examples:
          - '2024-05-06T12:20:00Z'
        conference_room:
          allOf:
          - $ref: '#/components/schemas/ConferenceRoom'
          description: Conference Room data.
      unevaluatedProperties:
        not: {}
    AddressChannel:
      anyOf:
      - $ref: '#/components/schemas/AudioChannel'
      - $ref: '#/components/schemas/MessagingChannel'
      - $ref: '#/components/schemas/VideoChannel'
    VideoChannel:
      type: object
      required:
      - video
      properties:
        video:
          type: string
          description: Video Channel of Fabric Address
          examples:
          - /external/resource_name?channel=video
      unevaluatedProperties:
        not: {}
    ConferenceRoomAddressPaginationResponse:
      type: object
      required:
      - self
      - first
      properties:
        self:
          type: string
          format: uri
          description: Link of the current page
          examples:
          - https://example.signalwire.com/api/fabric/resources/conference_room/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=0&page_size=50&type=conference_room
        first:
          type: string
          format: uri
          description: Link to the first page
          examples:
          - https://example.signalwire.com/api/fabric/resources/conference_room/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=0&page_size=50&type=conference_room
        next:
          type: string
          format: uri
          description: Link to the next page
          examples:
          - https://example.signalwire.com/api/fabric/resources/conference_room/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=1&page_size=50&page_token=PA6581c1fa-d985-4c8f-b53e-2fee11b579ad&type=conference_room
        prev:
          type: string
          format: uri
          description: Link to the previous page
          examples:
          - https://example.signalwire.com/api/fabric/resources/conference_room/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=0&page_size=50&page_token=PA6581c1fa-d985-4c8f-b53e-2fee11b579ad&type=conference_room
      unevaluatedProperties:
        not: {}
    AudioChannel:
      type: object
      required:
      - audio
      properties:
        audio:
          type: string
          description: Audio Channel of Fabric Address
          examples:
          - /external/resource_name?channel=audio
      unevaluatedProperties:
        not: {}
    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.
    ConferenceRoomUpdateRequest:
      type: object
      required:
      - enable_room_previews
      - sync_audio_video
      properties:
        name:
          type: string
          description: The name of the Conference Room
          examples:
          - coffee_cafe
        display_name:
          type: string
          maxLength: 200
          description: Display name of the Conference Room
          examples:
          - Reception
        description:
          type: string
          maxLength: 3000
          description: The descrption of the Conference Room
          examples:
          - This room is for coffee, no shop talk
        join_from:
          type: string
          format: date-time
          description: The time users are allowed to start joining the conference. Joining before this time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        join_until:
          type: string
          format: date-time
          description: The time users are allowed to until the conference is locked. Attempting to join the conference after the set time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        max_members:
          type: integer
          format: int32
          minimum: 0
          maximum: 300
          description: Maximum number of members allowed in the conference room
          examples:
          - 30
        quality:
          type: string
          enum:
          - 1080p
          - 720p
          description: The viudeo quality of the Conference Room.
          examples:
          - 1080p
          default: 720p
        remove_at:
          type: string
          format: date-time
          description: The time to remove all participants from the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        remove_after_seconds_elapsed:
          type: integer
          format: int32
          minimum: 0
          maximum: 200000
          description: The amount of time in seconds to remove a particpant from a conference after they join.
        layout:
          allOf:
          - $ref: '#/components/schemas/Layout'
          description: The video layout of the conference.
          examples:
          - grid-responsive-mobile
          default: grid-responsive
        record_on_start:
          type: boolean
          description: Starts recording when the conference starts.
          examples:
          - true
        enable_room_previews:
          type: boolean
          description: Enables live video room previews for the conference.
          examples:
          - true
        meta:
          type: object
          unevaluatedProperties: {}
          description: Metadata of the conference.
          examples:
          - foo: bar
        sync_audio_video:
          type: boolean
          description: Syncs the participants audio and video.
          examples:
          - true
        tone_on_entry_and_exit:
          type: boolean
          description: Plays a tone when a participant joins or leaves the conference.
          examples:
          - true
        room_join_video_off:
          type: boolean
          description: Turns the conference video off when the participant joins the room if `true`.
          examples:
          - true
        user_join_video_off:
          type: boolean
          description: Turns the participants video off when the participant joins the room if `true`.
          examples:
          - true
      unevaluatedProperties:
        not: {}
    MessagingChannel:
      type: object
      required:
      - messaging
      properties:
        messaging:
          type: string
          description: Messaging Channel of Fabric Address
          examples:
          - /external/resource_name?channel=messaging
      unevaluatedProperties:
        not: {}
    Layout:
      type: string
      enum:
      - grid-responsive
      - grid-responsive-mobile
      - highlight-1-responsive
      - 1x1
      - 2x1
      - 2x2
      - 5up
      - 3x3
      - 4x4
      - 5x5
      - 6x6
      - 8x8
      - 10x10
    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.
    ConferenceRoomUpdateStatusCode422:
      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_value
          message: max_members must be greater than 0
          attribute: max_members
          url: https://signalwire.com/docs/apis/error-codes
    ConferenceRoomCreateStatusCode422:
      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: missing_required_parameter
          message: display_name is required
          attribute: display_name
          url: https://signalwire.com/docs/apis/error-codes
    ConferenceRoom:
      type: object
      required:
      - id
      - name
      - description
      - display_name
      - max_members
      - quality
      - fps
      - join_from
      - join_until
      - remove_at
      - remove_after_seconds_elapsed
      - layout
      - record_on_start
      - tone_on_entry_and_exit
      - room_join_video_off
      - user_join_video_off
      - enable_room_previews
      - sync_audio_video
      - meta
      - prioritize_handraise
      properties:
        id:
          allOf:
          - $ref: '#/components/schemas/uuid'
          description: The unique id of the Conference Room
          examples:
          - 1bd571e4-5ea4-4a70-a3c8-2bab5d20e754
        name:
          type: string
          description: The name of the Conference Room
          examples:
          - coffee_cafe
        description:
          type: string
          maxLength: 3000
          description: The descrption of the Conference Room
          examples:
          - This room is for coffee, no shop talk
        display_name:
          type: string
          maxLength: 200
          description: Display name of the Conference Room
          examples:
          - Reception
        max_members:
          type: integer
          format: int32
          minimum: 0
          maximum: 300
          description: Maximum number of members allowed in the conference room
          examples:
          - 30
        quality:
          type: string
          enum:
          - 1080p
          - 720p
          description: The viudeo quality of the Conference Room.
          examples:
          - 1080p
          default: 720p
        fps:
          type: number
          enum:
          - 30
          - 20
          description: The frames-per-second (fps) of the participants videos in the conference.
          examples:
          - 30
        join_from:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: The time users are allowed to start joining the conference. Joining before this time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        join_until:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: The time users are allowed to until the conference is locked. Attempting to join the conference after the set time will result in failure to join the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        remove_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: The time to remove all participants from the conference.
          examples:
          - '2024-05-06T12:20:00Z'
        remove_after_seconds_elapsed:
          anyOf:
          - type: integer
            format: int32
          - type: 'null'
          minimum: 0
          maximum: 200000
          description: The amount of time in seconds to remove a particpant from a conference after they join.
        layout:
          allOf:
          - $ref: '#/components/schemas/Layout'
          description: The video layout of the conference.
          examples:
          - grid-responsive
        record_on_start:
          type: boolean
          description: Starts recording when the conference starts.
          examples:
          - true
        tone_on_entry_and_exit:
          type: boolean
          description: Plays a tone when a participant joins or leaves the conference.
          examples:
          - true
        room_join_video_off:
          type: boolean
          description: Turns the conference video off when the participant joins the room if `true`.
          examples:
          - true
        user_join_video_off:
          type: boolean
          description: Turns the participants video off when the participant joins the room if `true`.
          examples:
          - true
        enable_room_previews:
          type: boolean
          description: Enables live video room previews for the conference.
          examples:
          - true
        sync_audio_video:
          anyOf:
          - type: boolean
          - type: 'null'
          description: Syncs the participants audio and video.
          examples:
          - true
        meta:
          type: object
          unevaluatedProperties: {}
          description: Metadata of the conference.
          examples:
          - foo: bar
        prioritize_handraise:
          type: boolean
          description: Indicator if the Conference Room will prioritize showing participants 

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