Call Flow

Generates a visual call flow for a dedicated number for example calls to 0.

There is now no need to spend hours interrogating how calls to 0 flows through your Braodworks/ Odin system building a call flow for management or to send to customers. This can now be done in seconds with Odins Spear Reporter. Give this feature the number (0), the number type (DN, Extension, Alias), and what its attached to (User, Hunt Group etc) and the feature will generate a flow like the below for you!

Simple call flow example of calls to the main number attached to an Auto Attendant

Making Sense of The Graph

What is does a red circle with 3001 in it mean and what does 'CFB' stand for? To make sense of the graph you will need to see the Node Key and the Abbreviation Key found below:

Making Sense of The Call Flow

Parameters

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

  • group_id (str): Group ID where target number for call flow is located.

  • number (str): Target number for call flow. NOTE: do not include the area code e.g. "123456789"

  • number_type (str): Type of number, options: "dn": Direct Number, "extension": Extension, "alias": Alias

  • broadworks_entity_type (str): Broadworks entity type target number is associated with. Options: "auto_attendant": Auto Attendant, "call_center": Call Center, "hunt_group": Hunt Group, "user": User

Return

  • None: This will generate a SVG file with the call flow in the folder 'os_reports'. Check this folder once script has complete.

The script makes use of the following methods:

api.get.service_provider()
api.get.group()
api.get.auto_attendants()
api.get.auto_attendant()
api.get.users()
api.get.bulk_call_forwarding_always()
api.get.bulk_call_forwarding_busy()
api.get.bulk_call_forwarding_no_answer()
api.get.bulk_call_forwarding_not_reachable()
api.get.user_call_forwarding_always()
api.get.user_call_forwarding_busy()
api.get.user_call_forwarding_no_answer()
api.get.user_call_forwarding_no_answer()
api.get.group_call_center()
api.get.group_call_centers()
api.get.group_call_center()
api.get.group_call_center_overflow()
api.get.group_call_center_stranded_calls()
api.get.group_call_center_stranded_calls_unavailable()
api.get.group_call_center_forced_forwarding()
api.get.group_hunt_groups()
api.get.group_hunt_group()

How To Use:

This method requires keyword arguments i.e. group_id="group_id"

assistant = Reporter(my_api)

# Generates a call flow chart for the number 123456789.
assistant.call_flow(
    service_provider_id="serviceProviderId",
    group_id="groupId",
    number="123456789",
    number_type="dn",
    broadworks_entity_type="user"
)

Terminal Output

Start.

Fetching Service Provider & Group details.
Fetching all Auto Attendants.: 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00,  1.27it/s]
Fetching all Users.: 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 11/11 [00:06<00:00,  1.82it/s]
Fetching all Call Centers.: 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:04<00:00,  4.30s/it]
Fetching all Hunt Groups.: 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 5/5 [00:05<00:00,  1.13s/it]
Gathering nodes in flow.
Generating report.
Saving report.

End.

Last updated

Was this helpful?