# Zoom client support The information in the zoom_client_support section of the manifest JSON represents the values on the **Features** > **Surface** > **[Zoom Client Support](/docs/build-flow/create-oauth-apps/#step-3-select-zoom-products-and-features)** page of the app build-flow. ## Manifest JSON ```json { "features": { …… "zoom_client_support": { "mobile": { "enable": true, "apple_developer_program_team_id": "" }, "zoom_room": { "enable": true, "enable_personal_zoom_room": true, "enable_shared_zoom_room": true, "enable_digital_signage": true, "enable_zoom_rooms_controller": true }, "pwa_client": { "enable": true } }, …… } } ``` ## Field Description | Field | Description | Required | | :--------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------- | | `mobile.enable` | Allow users to access your app from the Zoom client for iOS, iPadOS, and Android. [Learn more](/docs/zoom-apps/guides/mobile/) | No | | `mobile.apple_developer_program_team_id` | Provide your [Apple Developer Program Team ID](https://developer.apple.com/account/#/membership) to make your app available on the Zoom clients for iOS and iPadOS. This is required for using your app on Apple devices.

(Only for iOS and iPadOS) | No | | `zoom_room.enable` | Allow users to access your app from Zoom Room clients. In the list below, check the Zoom Room clients that your app supports. | No | | `zoom_room.enable_personal_zoom_room` | Enable for personal Zoom Rooms. [Learn more](/docs/rooms/za/za-pzr/). | No | | `zoom_room.enable_shared_zoom_room` | Enable for shared Zoom Rooms. [Learn more](/docs/rooms/za/za-szr/) | No | | `zoom_room.enable_digital_signage` | Enable for Zoom Rooms Digital Signage. [Learn more](/docs/rooms/za/za-digi-sign/) | No | | `zoom_room.enable_zoom_rooms_controller` | Enable for Zoom Rooms Controllers. [Learn more](/docs/rooms/za/za-zrc/) | No | | `pwa_client.enable` | Enable users to access your app from Zoom PWA client. This feature is currently available only for Zoom Contact Center. [Learn more](/docs/contact-center/apps/zcc-pwa/) | No | ---