GET - Group Services Authorized

Fetch all services authorized within a group.

Parameters

  • service_provider_id (str): Service provider ID of the target

  • group_id (str): Group ID of the target

Returns

  • Dict: A dictionary with the service names of all authorized services within the group.

How To Use:

my_api.services.get_group_services_authorized(
    service_provider_id="service_provider_id",
    group_id="group_id"
)

Example Data Returned (Formatted)

{
    "userServices": [
        {
            "serviceName": "Anonymous Call Rejection",
            "authorized": false
        },
        {
            "serviceName": "Authentication",
            "authorized": false
        }
    ],
    "groupServices": [],
    "servicePackServices": []
}

Last updated

Was this helpful?