跳到主要内容

Create meeting

POST 

/bv/cms/v1/meetings

Creates a meeting.


  • Returns a 404/NotFound error if the requested resource is not found.

Request

Header Parameters

    x-bv-org-id stringrequired

    To invoke this API using api_token, you need to set the x-bv-org-id header to specify the organization for which you want to perform the action.

Body

required
    name string

    Optional. The name of the meeting to create.

    schedule objectrequired

    Required. The schedule time for the meeting. The meeting cannot be over 12 hours.

    started_at date-timerequired

    Required. Indicates the meeting will be available after the start time.

    closed_at date-timerequired

    Required. Indicates the meeting will be unavailable after the close time.

    max_participants int32

    Optional. The maximum number of participants allowed in the meeting. This value will be used to determine the number of tokens returned by the sessioninfo API. Default: 10. Max: 100. NOTE: This field is reserved for future use and currently has no effect yet.

Responses

A successful response.

Schema
    meeting object
    id string

    Output only. The unique id of the meeting.

    name string

    Optional. The name of the meeting.

    schedule objectrequired

    Required. The schedule time for the meeting. The meeting cannot be over 12 hours.

    started_at date-timerequired

    Required. Indicates the meeting will be available after the start time.

    closed_at date-timerequired

    Required. Indicates the meeting will be unavailable after the close time.

    max_participants int32

    Optional. The maximum number of participants allowed in the meeting. Default: 10. Max: 100.

    status string

    Possible values: [MEETING_STATUS_PREPARING, MEETING_STATUS_SCHEDULED, MEETING_STATUS_INITIATING, MEETING_STATUS_AVAILABLE, MEETING_STATUS_CLOSING, MEETING_STATUS_ENCODING, MEETING_STATUS_CANCELING, MEETING_STATUS_CLOSED, MEETING_STATUS_ARCHIVING, MEETING_STATUS_ARCHIVED, MEETING_STATUS_FAILED]

    Output only. The status of the meeting.

    created_at date-time

    Output only. The timestamp of the meeting that was created.

    updated_at date-time

    Output only. The timestamp of the meeting that was last updated.

Loading...