POST - User Shared Call Appearance Endpoint

Creates a new Shared Call Apprance (SCA) on a single user.

Parameters

  • service_provider_id (str): Service Provider/ Enterprise ID where Group is hosted.

  • group_id (str): Target Group ID where users are located.

  • device_name (str): Device to add for SCA from available devices.

Returns

  • Dict: New SCA details applied to user.

How To Use:

my_api.post_user_shared_call_appearance_endpoint(
        "[email protected], 
        "line1", 
        "dev1"
    ):

Example Data Returned (Formatted)

{
	"userId":"[email protected]",
	"linePort":"line@domain",
	"isActive":true,
  "allowOrigination":true,
	"allowTermination":true,
	"deviceName":"dev1",
	"deviceLevel":"Group"
}

Last updated

Was this helpful?