Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

How can I automate the presented CLID when an agent makes an outbound call?

From version 2.3 of ContactWorld Connect, if enabled for your account, you can configure ContactWorld Connect to dynamically select a callback number. The dynamically selected callback number takes precedence for individual calls over both the callback number defined by your agent in ContactPad and your account's default callback number. For information on about callback numbers, see Callback numbers.

You can use this feature in various ways depending on how your Salesforce org is set up. To override callback numbers, you must create a custom Apex class that implements the NVMContactWorld.ISelectPresentedClid interface and defines the GetPresentedClid method. The GetPresentedClid method describes how ContactWorld Connect can generate or locate the callback number. ContactWorld Connect can then present this number as the callback number.

To create the custom class, you must be familiar with creating Apex classes in Salesforce. For information on about creating Apex classes, see Salesforce help.

...

You do not need to provide presentedClidJson because Salesforce passes the value to the method for you when ContactWorld Connect initiates an outbound call.

...

Note

When creating your new class, you must declare both the class and the method as global so that the ContactWorld Connect package can access the class and invoke the method.

When you have created your class, you must ensure that ContactWorld Connect uses the class. For information about configuring the class that ContactWorld Connect uses to select the presented CLID, see Configuring custom settings for optional ContactWorld features in Salesforce.

ContactWorld Connect validates the value returned by the GetPresentedClid method according to the following rules:

  • if a null value is returned, the call continues and ContactWorld Connect uses the agent's default callback number, if set, or the account's default callback number
  • if a non-null value is returned but the value is not configured as a callback number for the account, the agent receives an error message
  • if a non-null value is returned and the value is configured as a callback number for the account, but that callback number is restricted from the agent, the agent receives an error message
  • if a non-null value is returned and if the value is configured as a callback number for the account and that callback number is not restricted from the agent, the call continues, and the value is used as the callback number for the call

...

The presented callback number is stored in and retrieved from a custom field called PresentedCLID__c. The custom field is in the Dial List that the current Dial Entry belongs to. The GetPresentedClid method of the SelectPresentedClidByDialList class runs when an agent makes an outbound call using ContactWorld Connect. The method performs the following tasks:

...