From ContactWorld version 2.4 in Salesforce, if enabled for your account, you can configure ContactWorld 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 callback numbers, see /wiki/spaces/PD/pages/50070640.
To use a callback number, that number must be configured and available for your account. To add a new callback number to use with your account, contact support.
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 can generate or locate the callback number. ContactWorld 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 creating Apex classes, see Salesforce help.
NVMContactWorld.ISelectPresentedClid interface definition
global interface ISelectPresentedClid{ String GetPresentedClid(String clickToDialResult); }
The clickToDialResult
contains the phone number that the agent clicked to dial, and the object ID and type of the Salesforce object from which the agent clicked. clickToDialResult
is in JSON string format, for example, {"number":"4155551212","objectId":"001x0000003DIGj","object":"Account"}
. You do not need to provide clickToDialResult
because Salesforce passes the value to the method for you when an agent initiates a Click to dial event.
GetPresentedClid
returns the callback number as a String object.
When creating your new class, you must declare both the class and the method as global so that the ContactWorld installation package can access the class and invoke the method.
When you have created your class, you must ensure that ContactWorld uses the class in Salesforce. For information about configuring the class that ContactWorld uses to select the presented CLID, see Configuring custom settings for optional ContactWorld features in Salesforce.
ContactWorld validates the value returned by the GetPresentedClid method according to the following rules:
- if a null value is returned, the Click to dial call continues and ContactWorld 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 Click to dial call continues, and the value is used as the callback number for the call
This feature is not currently available for calls made from the NVM Call action in Salesforce1.