メインコンテンツまでスキップ

Get meeting

GET 

/bv/cms/v1/meetings/:id

Fetches the specified meeting by ID


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

Request

Path Parameters

    id stringrequired

    Required. The unique id of the meeting.

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.

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