Preview Campaign Call

The administrator creates campaigns, configures the dialing mode (preview), and assigns the campaigns to teams. If an agent is part of a team to which campaigns are assigned, then the agent can make an outbound preview campaign call. For more information, see the Cisco Webex Contact Center Campaign Manager User Guide.

The administrator configures the following in the custom layout to enable preview campaign contact for an agent.

Campaign Contact

The administrator adds the Campaign Contact widget in the header container of the custom layout. The campaign contact displays the customer's contact information based on the defined properties. For more information on the layout alignment, see the layout property section.

Example:

"header":{
   "id":"dw-header",
   "widgets":{
      "acqueon-component":{
         "comp": "acqueon-preview-campaign",
         "script": "http://localhost:5555//index.js", // include CDN link here,
         "properties":{
            "isCampaignManagementEnabled": "$STORE.agent.isCampaignManagementEnabled",
            "agentDbId": "$STORE.agent.agentDbId",
            "lcmUrl": "$STORE.agent.lcmUrl",
            "isCallInProgress": "$STORE.agentContact.isActiveCall",
            "outdialEntryPointId": "$STORE.agent.outDialEp",
            "teamId": "$STORE.agent.teamId",
            "campaignManagerAdditionalInfo": "$STORE.agent.campaignManagerAdditionalInfo"
         }
      }
   },
   "layout":{
      "areas":[
         [
            "acqueon-component"
         ]
      ],
      "size":{
          "cols":[1], "rows":[1]
      }
   }
}

Call Guide

The Call Guide widget displays in the Auxiliary Information pane on the Desktop. The call guide displays the questions and answers at the campaign level. The agent is prompted to read through the set of questions in the call guide and submit the responses.

Example:

"panel":{
   "comp":"md-tabs",
   "attributes":{
      "class":"widget-tabs"
   },
   "children":[
      {
         "comp":"md-tab",
         "attributes":{
            "slot":"tab",
            "class":"widget-pane-tab"
         },
         "children":[
            {
               "comp":"md-icon",
               "attributes":{ "name":"icon-note_16"
               }
            },
            {
               "comp":"span", "textContent":"Call Guide"
            }
         ],
         "visibility":"CALL_GUIDE"
      },
      {
         "comp":"md-tab-panel",
         "attributes":{
            "slot":"panel", "class":"widget-pane"
         },
         "children":[
            {
               "comp": "acqueon-call-guide",
               "script": "http://localhost:5555//index.js", // include CDN link here
               "wrapper":{
                  "title":"Call Guide", "maximizeAreaName":"app-maximize-area"
               },
               "properties":{
                  "lcmKey":"$STORE.agentContact.getCallGuideProps.LCMKey",
                  "agentDbId":"$STORE.agent.agentDbId",
                  "lcmUrl":"$STORE.agent.lcmUrl",
                  "campaignManagerAdditionalInfo":"$STORE.agent.campaignManagerAdditionalInfo"
               }
            }
         ],
         "visibility":"CALL_GUIDE"
      }
   ]
}
Note
  • The following comp property references have changed. agentx in the property value is replaced with acqueon:

    • agentx-preview-campaign is renamed to acqueon-preview-campaign

    • agentx-call-guide is renamed to acqueon-call-guide

  • You must host List and Campaign Manager (LCM) on a CDN and then specify the URL in the script property.