Versions Compared

Key

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

Contents

Table of Contents

...

Wait couple of seconds and Enreach User Ids should appear on the user list for the users that have same email address than in Enreach Cloud.

...

Figure 31 Enreach Cloud User Id

...

Image Added

After updating the ids, if some user is missing the Enreach User id, then you need to manually update the correct Enreach Cloud Email to Enreach User Email field on the user record:

Figure 6 User record Voice for Dynamics 365 settings

  • Enreach User Id – unique identifier of the user in Enreach Cloud

  • Enreach User Email (optional) - should be filled in if email user in D365 differ from Enreach Cloud

...

Click Add at the bottom of pop-up.

...

Anchor
_Toc134179492
_Toc134179492
1.5.3

...

Phone Call Syngronization settings (Enterprise Calls)

Phone Call Synchronization settings are in General Settings -> Phone Call sync settings view:

...

Figure 33 Phonecall Sync SettingsImage Modified

...

  • CallDurationLimit - Minimum duration of calls (in seconds). If the duration of a call is below this limit then the call is not synchronised to Dynamics.

  • CallStartMargin - value in seconds, used to set a range of searching existing phone calls, to avoid creating duplicates.

  • DefaultCrmAssignee - Enreach user id, which is set as the owner of a phone call, in case user Enreach user was not found in D365. Current value e.g. fbc423f5-74f9-e911-80e0-…

...

Note:Users mobile number needs to be saved to User form in Dynamics 365 for all users that are going to need their phonecalls to be synced from mobile to Dynamics 365. By default calls that are classified as Work calls (Call information Privacy setting in Voice Center side) are synchronized. Unclassified and Private calls are not Synced to D365.

Anchor
_Toc134179493
_Toc134179493
1.5.4

...

Callback Syncronization Settings

Callbacks can be configured only after you get a confirmation from Enreach.

...

To configure callbacks in Dynamics 365, at least one callback profile needs to be added with the following (example) settings:

Image Modified

...

  • Callback List: lookup to a virtual entity, which is retrieved from Enreach API.

  • Queue: lookup to OOB D365 entity Queue. Defines to which queue callbacks should be assigned to.

  • Ownership Rule: controls how callback requests are assigned to users:

    • API User: callback requests will be owned by the API user (application user)

    • Owner of Queue: owner of callback requests will be identical to owner of target queue

  • Phone Call Subject: the subject set to phone calls created by the integration. It can optionally be specified here, on callback profile level. If no value is given here then the global setting is used (see above).

  • Duplicate Handling Rule: specifies how multiple callback requests from the same number are handled

    • Bundle calls: All callback requests are synced to Dynamics. If at the same time more than one open callback requests exist, the calls are linked to each other and can be seen on Phone Call form.

    • Ignore additional calls: Additional callback requests from the same number within the same call queue are ignored, only one callback request is created in Dynamics

  • Synchronization method: See chapter 1.5.4.1 Synchronization methods.

  • Age Time Unit: A unit of the time-period, can be Days, Hours or Minutes. Controls the size of time window when querying callbacks from Enreach API. Visible in case of certain synchronization methods only. See chapter 1.5.4.1 Synchronization methods.

  • Callback Age: Number value of defined periods in the previous field. Visible in case of certain synchronization methods only. See chapter 1.5.4.1 Synchronization methods.

...

  • Navigate to customize the Unified Interface App (one or many) that your organization uses in your Dynamics 365 environment.

  • Open in App Designer (click the three dots on the right-side corner of the App)

...

Figure 36 Open in App Designer

  • Add Phone Call table to the list of pages, if it is not already included

  • Change the Main form to Voice for D365 – Phone Call

  • Include Quick View and Quick Create Forms to the app solution.

...

  • Save and Publish


Anchor
_Toc134179499
_Toc134179499
1.5.6 Dynamics 365 Click-to-Dial configuration

...

The API has to accept data in JSON format according to the following schema:

{

  "type""object",
  "properties": {
    "anum": {
      "type""string"
    },
    "bnum": {
      "type""string"
    }
  }
}

Example payload:

{

  "anum""+35850454564", // phone number of caller
  "bnum""+35840675644" // phone number of pool the call is in at the moment
}

Business logic will then find the caller in Dynamics CRM based anum and determine the needed action. Phone numbers have to be saved to CRM in the correct format, with no spaces or other characters, and starting with international calling prefix (plus sign). If phone numbers happen to be saved to CRM in local format then by removing first few (3-4) characters of anum, the rest can be matched to CRM data using contains comparison.

...

When the phone number of target queue has been determined by the business logic, it is returned as an HTTP response.

Example payload:

{

  "InitialTarget""+35853445657", // phone number of target queue or agent
}

Things to notice:

  • If no redirection has to be done (e.g. customer not found) then HTTP 204 No Content response must be returned

  • Returning the same bnum from the request as InitialTarget is forbidden because it would cause an infinite loop in Enreach cloud. In such a case returning HTTP 204 is recommended.

...

Anchor
_Toc134179506
_Toc134179506
1.8. Test Voice for Dynamics 365 functionality

If everything was set up correctly, you should see the Voice for Dynamics 365 sidebar in the configured applications. Inbound& outbound calls, automatic phone call activity creation, Click-toDial and callback handling (if configured) are now available for the end users.

...

Figure 40 Voice for Dynamics 365, Customer Service Workspace (CIF2) (On the left side of Dynamics 365 UI)

...