PUT - User Shared Call Appearance

Updates Shared Call Appearance (SCA) settings for a specified user.

Parameters

  • user_id (str): Target user id to update SCA settings for

  • settings (dict): Dictionary containing SCA settings to update

Returns

  • Dict: Updated SCA settings

How To Use:

my_api.shared_call_appearance.put_user_shared_call_appearance(
    user_id="[email protected]",
    settings={
        "enableMultipleCallArrangement":true,
	    "multipleCallArrangementIsActive":true,
	    "allowBridgingBetweenLocations":true,
    }
)

Example Data Returned (Formatted)

{
	"alertAllAppearancesForClickToDialCalls":true,
	"alertAllAppearancesForGroupPagingCalls":true,
	"maxAppearances":35,
	"allowSCACallRetrieve":true,
	"enableMultipleCallArrangement":true,
	"multipleCallArrangementIsActive":true,
	"allowBridgingBetweenLocations":true,
	"bridgeWarningTone":"Barge-In",
	"enableCallParkNotification":true,
	"userId":"[email protected]"
}

Last updated

Was this helpful?