Quick Add Group Functions#

  • fn.get_qag_choices: Used to filter Quick Add Groups (QAGs).

    0, 1 or 2 parameters are available

    0: Return all QAGs up and down from the global setting lookup level (highest level configuration: Provider). Refer to the entry for Quick Add Group lookup level in the Global Settings topic of the Core Feature Guide.

    1: specify the vendor to filter QAG’s by (valid options: cisco, webexapp, microsoft) This parameter is applied for Quick Add Group selection in the portal for the following:

    • Cisco Quick Subscriber

    • WebexApp Quick Subscriber

    • Microsoft Quick Subscriber

    • Add Subscriber From Profile

    Note

    • The Cisco QAS feature can be used for adding CUCM based services including Webex where the user requires UCM calling.

    • The Webex QAS feature can be used for adding webex services where UCM calling is not required. This may be free calling or webex calling services.

    2: integer value to specify the number of QAGs to return

Examples:

Example

Output

{{ fn.get_qag_choices }}
[{
   "title": "IMS-integrated Mobile (Basic)",
   "value": "IMS-integrated Mobile (Basic)"
 },
 {
   "title": "default",
   "value": "default"
 },
 {
   "title": "Generic Single Screen Room System",
   "value": "Generic Single Screen Room System"
 },
...
{{ fn.get_qag_choices cisco }}
[{
   "title": "Cisco DX80 Phone Type",
   "value": "Cisco DX80 Phone Type"
 },
 {
   "title": "Cisco E20 Phone Type",
   "value": "Cisco E20 Phone Type"
 },
 {
   "title": "Cisco 3905 Phone Type",
   "value": "Cisco 3905 Phone Type"
 },
...
{{ fn.get_qag_choices cisco, 1 }}
[{
   "title": "Cisco DX80 Phone Type",
   "value": "Cisco DX80 Phone Type"
 }]