PUT - Service Provider Trunk Group Call Capacity
Updates the max active calls and the bursting max active calls for the given service provider.
Parameters
service_provider_id (str): Service provider ID for which the max active calls needs to be updated
updates (dict): The updates to be applied to the service provider's trunking call capacity
Returns
Dict: Returns the updated call capacity for the service provider
How To Use:
my_api.trunk_groups.put_service_provider_trunk_group_call_capacity(
my_service_provider_id = "ServiceProviderID",
updates = {
"maxActiveCalls": 30,
"burstingMaxActiveCalls": -1
}
)
Example Data Returned (Formatted)
{
"serviceProviderId": "odin.mock.clone.ent1",
"maxActiveCalls": 10,
"burstingMaxActiveCalls": 10,
"numberOfBurstingBTLUs": 0
}
Last updated
Was this helpful?