GET - Group Services Available

Fetch all services available within a group.

Parameters

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

  • group_id (str): Group ID of the target

Returns

  • List: A list with the service names of all available services within the group.

How To Use:

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

Example Data Returned (Formatted)

[
    "Anonymous Call Rejection",
    "Authentication",
    "Call Forwarding Always",
    "Call Forwarding Busy",
    "Call Forwarding No Answer",
    "Call Notify",
    "Calling Line ID Delivery Blocking",
    "CommPilot Express",
    "Do Not Disturb",
    "Intercept User",
    "Last Number Redial",
    "Priority Alert",
    "Call Return",
    "Remote Office",
    "Selective Call Acceptance",
    "Call Forwarding Selective",
    "Selective Call Rejection",
    "Simultaneous Ring Personal",
    "Voice Messaging User",
    "Alternate Numbers",
    "Shared Call Appearance",
    "Speed Dial 8",
    "Customer Originated Trace",
    "Third-Party MWI Control",
    "Shared Call Appearance 5",
    "Shared Call Appearance 10",
    "Shared Call Appearance 15",
    "Shared Call Appearance 20",
    "Shared Call Appearance 25",
    "Shared Call Appearance 30",
    "Shared Call Appearance 35",
    "Calling Name Retrieval",
    "Flash Call Hold",
    "Speed Dial 100",
    "Directed Call Pickup",
    "Third-Party Voice Mail Support",
    "Directed Call Pickup with Barge-in",
    "Voice Portal Calling",
    "External Calling Line ID Delivery",
    "Internal Calling Line ID Delivery",
    "Automatic Callback",
    "Call Waiting",
    "Calling Line ID Blocking Override",
    "Calling Party Category",
    "Barge-in Exempt",
    "SMDI Message Desk",
    "Video Add-On",
    "Malicious Call Trace",
    "Preferred Carrier User",
    "Push to Talk",
    "Basic Call Logs",
    "Enhanced Call Logs",
    "Hoteling Host",
    "Hoteling Guest",
    "Voice Messaging User - Video",
    "Simultaneous Ring Family",
    "Diversion Inhibitor",
    "Multiple Call Arrangement",
    "Custom Ringback User",
    "Custom Ringback User - Video",
    "Automatic Hold/Retrieve",
    "Busy Lamp Field",
    "Three-Way Call",
    "Call Transfer",
    "Privacy",
    "Fax Messaging",
    "Physical Location",
    "Charge Number",
    "BroadWorks Supervisor",
    "BroadWorks Agent",
    "N-Way Call",
    "Directory Number Hunting",
    "Two-Stage Dialing",
    "Call Forwarding Not Reachable",
    "MWI Delivery to Mobile Endpoint",
    "BroadWorks Receptionist - Small Business",
    "BroadWorks Receptionist - Office",
    "External Custom Ringback",
    "In-Call Service Activation",
    "Connected Line Identification Presentation",
    "Connected Line Identification Restriction",
    "BroadWorks Anywhere",
    "Zone Calling Restrictions",
    "Polycom Phone Services",
    "Custom Ringback User - Call Waiting",
    "Music On Hold User",
    "Video On Hold User",
    "Prepaid",
    "Call Center - Basic",
    "Call Center - Standard",
    "Call Center - Premium",
    "Communication Barring User-Control",
    "Classmark",
    "Calling Name Delivery",
    "Calling Number Delivery",
    "Virtual On-Net Enterprise Extensions",
    "Office Communicator Tab",
    "Pre-alerting Announcement",
    "Call Center Monitoring",
    "Location-Based Calling Restrictions",
    "BroadWorks Mobility",
    "Call Me Now",
    "Call Recording",
    "Integrated IMP",
    "Group Night Forwarding",
    "BroadTouch Business Communicator Desktop",
    "BroadTouch Business Communicator Desktop - Audio",
    "BroadTouch Business Communicator Mobile",
    "BroadTouch Business Communicator Mobile - Audio",
    "BroadTouch Business Communicator Tablet",
    "BroadTouch Business Communicator Tablet - Audio",
    "BroadTouch Business Communicator Tablet - Video",
    "Executive",
    "Executive-Assistant",
    "Client License 3",
    "Client License 4",
    "Client License 15",
    "Client License 16",
    "Client License 17",
    "Client License 18",
    "Client License 19",
    "Security Classification",
    "Flexible Seating Guest",
    "Personal Assistant",
    "Route List",
    "Collaborate - Audio",
    "Collaborate - Video",
    "Collaborate - Sharing",
    "Call Forwarding Always Secondary",
    "Silent Alerting",
    "Conference Room",
    "Sequential Ring",
    "Number Portability Announcement",
    "Direct Route",
    "Terminating Alternate Trunk Identity",
    "Resource Priority",
    "PBX Integration",
    "Auto Attendant",
    "Call Pickup",
    "Hunt Group",
    "Incoming Calling Plan",
    "Outgoing Calling Plan",
    "Voice Messaging Group",
    "Music On Hold",
    "Emergency Zones",
    "Auto Attendant - Video",
    "Trunk Group",
    "Auto Attendant - Standard",
    "Anonymous Call Rejection",
    "Authentication",
    "Call Forwarding Always",
    "Call Forwarding Busy",
    "Call Forwarding No Answer",
    "Calling Line ID Delivery Blocking",
    "Do Not Disturb",
    "Intercept User",
    "Last Number Redial",
    "Call Return",
    "Voice Messaging User",
    "Speed Dial 8",
    "Customer Originated Trace",
    "Flash Call Hold",
    "External Calling Line ID Delivery",
    "Internal Calling Line ID Delivery",
    "Automatic Callback",
    "Call Waiting",
    "Basic Call Logs",
    "Three-Way Call",
    "Call Transfer",
    "Call Forwarding Not Reachable",
    "Connected Line Identification Presentation",
    "Polycom Phone Services",
    "Silent Alerting",
    "Anonymous Call Rejection",
    "Authentication",
    "Call Forwarding Always",
    "Call Forwarding Busy",
    "Call Forwarding No Answer",
    "Calling Line ID Delivery Blocking",
    "Do Not Disturb",
    "Last Number Redial",
    "Call Return",
    "Voice Messaging User",
    "Speed Dial 8",
    "Customer Originated Trace",
    "External Calling Line ID Delivery",
    "Internal Calling Line ID Delivery",
    "Automatic Callback",
    "Call Waiting",
    "Basic Call Logs",
    "Three-Way Call",
    "Call Transfer",
    "Call Forwarding Not Reachable",
    "Connected Line Identification Presentation",
    "Polycom Phone Services",
    "Call Center - Standard",
    "Silent Alerting"
]

Last updated

Was this helpful?