Versions Compared

Key

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

Anchor
top
top
When an agent makes a call using NewVoiceMediaor receives an interaction using Vonage Contact Center, the agent can set a disposition code associated with that callinteraction. For more information about disposition codes, see Disposition codes for NewVoiceMedia Vonage Contact Center in Salesforce.

You have three different ways to configure disposition codes:

  • Configuring disposition codes using Log a Call
  • Configuring setting the disposition code for a call an interaction based on the callinteraction's outcome
  • Configuring disposition codes using custom components and Apex
Panel
borderColor#eeeeee
bgColorwhite
titleColorwhite
borderWidth1
titleBGColor#232323
borderStylesolid
titleIn this page

Table of Contents
depth2

1. Configuring disposition codes using Log a Call

Note
titleVoice interactions only

Agents can set a disposition code using the Salesforce Log a Call area for voice interactions only.

If your agents use Log a Call to add notes and other details during a callvoice interaction, you can configure disposition codes in the Log a Call area. If your agents do not use Log a Call, you can still configure disposition codes using custom components and Apex. For information about configuring disposition codes using custom components and Apex, see 227154569Configuring disposition codes using custom components and Apex section later in this page.

How do I enable agents to select a disposition code for a

...

voice interaction using Log a Call?

Before an agent can select a disposition code for a callvoice interaction, you must create a disposition code field (or use an existing field) and make the field available in the Log a Call area in applicable Salesforce objects.

...

An agent can now see and use the disposition code field in the Log a Call area. For information about setting the disposition code, see Setting disposition codes for NewVoiceMedia Vonage Contact Center in Salesforce.Disposition code in Log a CallImage Removed

How can I ensure that Salesforce notifies

...

Vonage Contact Center whether an agent has provided a disposition code?

If the enforced disposition codes feature is enabled for your account, you must firstly first configure the feature in NewVoiceMediaVonage Contact Center. For information about configuring the enforced disposition codes feature in NewVoiceMediaVonage Contact Center, see Configuring enforced disposition codes. You must then configure Salesforce to notify NewVoiceMedia Vonage Contact Center whether an agent has provided a disposition code.

To configure Salesforce to notify NewVoiceMedia Vonage Contact Center whether the agent has provided a disposition code, add the following information to custom settings:

Custom Settings fieldDescriptionExample
Log a Call Disposition Code Field

The disposition code field's API name.

You must have added the disposition code field to the Log a Call area as described in the previous section.

Disposition_code__c
ContactWorld Account Key

Your NewVoiceMedia Vonage Contact Center account key.

You must also set your API token for the account key. For information about setting your API token, see Configuring NewVoiceMedia Vonage Contact Center API authentication tokens.

You may have already added this information to configure another feature.

polik21xpsu

For information about editing custom settings, see Configuring custom settings for optional NewVoiceMedia Vonage Contact Center features in Salesforce.

Enforced disposition codeImage Removed

When an agent clicks to save their changes in Log a Call, Salesforce notifies NewVoiceMedia Vonage Contact Center whether the agent has provided a value  value in the specified disposition code field.

2. Configuring setting the disposition code for a

...

voice interaction based on the

...

interaction's outcome

If enabled for your account, you can configure NewVoiceMedia Vonage Contact Center in Salesforce to automatically set the disposition code for an outbound call voice interaction based on what happened to the callinteraction. To configure this feature, you must map call interaction outcomes to disposition codes.

Insert excerpt
_ExcerptDispositionCodeMapping
_ExcerptDispositionCodeMapping
nopaneltrue

Back to top ↑

3. Configuring disposition codes using custom components and Apex

If the enforced disposition codes feature is enabled for your account and  your your agents use custom components during a call an interaction rather than Log a Call, you can configure the custom component to set disposition codes as required.

How do I configure a custom component to set a disposition code for

...

an interaction in Vonage Contact Center?

To configure the custom component to set disposition codes, call the SetDispositionCodeForCurrentCall method in the DispositionCodeService class provided in the NewVoiceMedia Vonage Contact Center package. Use the following Apex code in your component:

...

When your custom component runs the configured Apex code, the DispositionCodeService sets the disposition code for the call in NewVoiceMediathe interaction in Vonage Contact Center.

Visualforce example

You can use the DispositionCodeService Visualforce or Lightning @AuraEnabled methods.

Expand
titleVisualforce example

The following example is for a Visualforce page with a drop-down menu and a button to set the disposition code for the current user:

Code Block
languagejava
titleVisualforce controller
public with sharing class SampleDispositionController {
 
    public String dispositionCode { get; set; }
     
    public PageReference DispositionCall() {
         
        System.debug('Code: ' + dispositionCode);
        NVMContactWorld.DispositionCodeService dispositionCodeService = new NVMContactWorld.DispositionCodeService();
        dispositionCodeService.SetDispositionCodeForCurrentCall(dispositionCode);
         
        return null;
    }
}


Code Block
languagejava
titleVisualforce page
<apex:page controller="SampleDispositionController">
    <apex:form >
        <apex:selectList multiselect="false" size="1" value="{!dispositionCode}">
            <apex:selectOption itemLabel="Call back in 7 days" itemValue="CallBack" />
            <apex:selectOption itemLabel="Do not contact" itemValue="DoNotContact" />
        </apex:selectList>
        <apex:commandButton value="Disposition Call" action="{!DispositionCall}"/>
    </apex:form>
</apex:page>


Flows example

You can use the DispositionCodeService in a Flow.

Expand
titleFlows example

To use the DispositionCodeService in a Flow, wrap the code inside a custom class that is an @InvocableMethod:

Code Block
languagejava
titleDispositionCodeService in @InvocableMethod wrapper
global class DispositionFlow {
     
    @InvocableMethod (label = 'Set Disposition Code for Current Call' description = 'Set the disposition code for the users current call in NewVoiceMediaVonage Contact Center.')
    global static void SetDispositionCode(List<String> params) {
         
        if (params.size() != 1) {
            // Error?
            System.debug('You should pass only 1 disposition code to this method.');
        }
         
        String dispositionCode = params[0];
 
        NVMContactWorld.DispositionCodeService dispositionCodeService = new NVMContactWorld.DispositionCodeService();
        dispositionCodeService.SetDispositionCodeForCurrentCall(dispositionCode);
         
    }
}

When you have created the Apex class, use the Flow Builder to create a flow that uses the class:

  1. Add an Apex Action to your flow.
  2. Choose the Apex class you created:.Add Apex actionImage Removed
  3. In Set Input Values, click to include input values.
    Include input valuesImage Removed
  4. Type the value or search for resources to set the disposition code to and click Done.

DML statements, asynchronous Apex, scheduled Apex, sending email

The SetDispositionCodeForCurrentCall method makes HTTP callouts to NewVoiceMediaVonage Contact Center, so you cannot run DML statements, asynchronous Apex (such as future methods and batch Apex jobs), or scheduled Apex, or send email before calling this code. For further information, see Salesforce help.

...

Expand
titleExample of SetDispositionCodeForCurrentCall within a future method


Code Block
languagejava
titleDispositionCodeService in a future wrapper
public class DispositionCodeServiceFutureWrapper
{
    @future(callout=true)
    public static void SetDispositionCodeForCurrentCallInFuture(String dispositionCode)
    {  
         NVMContactWorld.DispositionCodeService dispositionCodeService = new NVMContactWorld.DispositionCodeService();
         dispositionCodeService.SetDispositionCodeForCurrentCall(dispositionCode);
    }
}


Code Block
languagejava
titleCode that makes call to SetDispositionCodeForCurrentCallInFuture method
public class YourCode
{
    public void YourMethod()
    {
        // --EXAMPLE-- DML statement require before callout
        Example__c obj = new Example__c(Name = 'Test');
        insert obj;
 
        // Call to @future method, which will then callout to Vonage Contact NewVoiceMediaCenter
        DispositionCodeServiceFutureWrapper.SetDispositionCodeForCurrentCallInFuture('DISPOSITION_CODE_VALUE');
    }
}


How do I display the disposition code in the

...

interaction's task record in Salesforce?

You can optionally display the disposition code's value in the related callinteraction's task record.

To display the disposition code in the task record, you must first specify, in custom settings, the field that will contain the disposition code. You can use the standard Call Result (CallDisposition) task field or create a custom field for this purpose. For information about editing custom settings, see Configuring custom settings for optional NewVoiceMedia Vonage Contact Center features in Salesforce.

When your custom component runs the configured Apex code, the DispositionCodeService sets the specified field's value to the value represented by DISPOSITION_CODE_VALUE in the code.

Next, you must add the field to the task's page layout.

Back to top ↑