Screen Sharing Config
  • 05 Dec 2023
  • 1 Minute to read
  • Dark
    Light

Screen Sharing Config

  • Dark
    Light

Article Summary

Screen Sharing Config

You need the Manage Settings permission to manage screen sharing config.

Screen Sharing Config JSON Format

Screen Sharing Config is represented as simple flat JSON objects with the following keys:

NameTypeDescription
isEnabledboolWhether screen sharing config is enabled or not.

Get a single Screen Sharing Config

GET livechat/screenSharingConfig

  • Parameters:

No Parameters

  • Response:

Screen Sharing Config

  • Example

Sample Request:

curl https://api11.comm100.io/v4/livechat/screenSharingConfig \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

{
  "isEnabled": true
} 

Disable the Screen Sharing Config

POST livechat/screenSharingConfig:disable

  • Parameters:

No Parameters

  • Response:

Screen Sharing Config

  • Example

Sample Request:

curl https://api11.comm100.io/v4/livechat/screenSharingConfig:disable \ 
    -X 'POST' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

{
  "isEnabled": false
} 

Enable the Screen Sharing Config

POST livechat/screenSharingConfig:enable

  • Parameters:

No Parameters

  • Response:

Screen Sharing Config

  • Example

Sample Request:

curl https://api11.comm100.io/v4/livechat/screenSharingConfig:enable \ 
    -X 'POST' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

{
  "isEnabled": true
} 

Was this article helpful?

What's Next