GET - Group Trunk Groups
Fetches list of all trunk groups in a single group.
Parameters
service_provider_id (str): Service Provider/ Enterprise ID where Group is located.
group_id (str): Group ID where the target Trunk Group is located.
Returns
List: List of core details of all Trunk Groups located in a single Group.
How To Use:
my_api.trunk_groups.get_group_trunk_groups(
"ServiceProviderID",
"GroupID"
)
Example Data Returned (Formatted)
[
{
"name": "odin.mock.trunk1",
"department": null,
"deviceName": "odin.mock.dev1",
"deviceLevel": "Group",
"groupId": "odin.mock.sp.grp1",
"serviceProviderId": "odin.mock.sp1"
},
{
"name": "odin.mock.trunk1",
"department": null,
"deviceName": "odin.mock.dev1",
"deviceLevel": "Group",
"groupId": "odin.mock.sp.grp1",
"serviceProviderId": "odin.mock.sp1"
}
]
Last updated
Was this helpful?