Embed

The information in the embed section of the manifest JSON represents the values on the Features > Embed page of the app build flow.

These features allow you to embed specific Zoom client functionalities (like Meetings, Contact Center and Phone) into your own external applications.

Manifest JSON

{
    "features": {
        // ......
        "embed": {
            "meeting_sdk": {
                "enable": true,
                "enable_device": true,
                "devices": [
                    "ZOOM_ROOM_COMPUTER",
                    "ZOOM_ROOM_CONTROLLER",
                    "OTHER_DEVICES"
                ],
                "request_anonymous_join_exception": true,
                "programmatic_join_bot": true
            },
            "contact_center_sdk": {
                "enable": true
            },
            "phone_sdk": {
                "enable": true
            }
        },
        "sdk_domain_allow_list": [
            {
                "domain": "example.com",
                "explanation": "Required for SDK integration",
                "developer_owned_domain": true
            }
        ]
        // ......
    }
}

Field Description

These features allow you to embed specific Zoom client functionalities (like Meetings, Contact Center and Phone) into your own external applications.

FieldDescriptionRequired
meeting_sdk.enableEmbed Meeting SDK and bring Zoom features to your app.No
meeting_sdk.enable_deviceThis feature allows your users to authorize and log in to your app on selected devices with a code or a URL.No
meeting_sdk.devicesDisplay DevicesNo
meeting_sdk.request_anonymous_join_exceptionRequest an exception to allow anonymous join. When enabled, users can join meetings without requiring authentication.No
meeting_sdk.programmatic_join_botAllow the app to join meetings programmatically as a bot participant.No
contact_center_sdk.enableEmbed Contact Center SDK and bring Contact Center features to your app.No
phone_sdk.enableEmbed Phone SDK and bring Phone features to your app.No
sdk_domain_allow_list[].domainThe domain to be added to the SDK allow list. SDK requests will be permitted from this domain.No
sdk_domain_allow_list[].explanationA brief explanation of why this domain needs to be allow-listed for SDK usage.No
sdk_domain_allow_list[].developer_owned_domainIndicates whether the domain is owned by the developer. Set to true if the developer owns and controls the domain.No