Genesys Cloud - Main

 View Only

Sign Up

  Thread closed by the administrator, not accepting new replies.
  • 1.  Duplicate records and contact lists

    Posted 09-12-2023 04:28
    No replies, thread closed.

    Hello

    We have a call overflow system, in which if a client does not want to wait for a call to be answered, they can ask you to call them.

    This system uploads a record to a contact list that we subsequently manage through a campaign

    The problem we have is that duplicate records are loaded in this contact list, if the customer requests that we call them more than once

    We want to create a data action, to be able to create a call rule that prior to the call, check the contact list and see if that client has already called you, if their phone number is duplicate

    We have a data action (Get Conversations by DNIS) that what it does is look at whether or not a phone number has called us since in a given time interval

    Our idea is to modify this data action so that as the phone number it takes the one that is in the contact list and as intervals, the date that is in the contact list (registration date) and the current date

    In order to check whether the client has called us again or not and let the record go to a telephone agent or not.

    I leave the data action code in case you can help us modify them

    Request body template

    {
     "interval": "${input.Date}",
     "order": "asc",
     "orderBy": "conversationStart",
     "paging": {
      "pageSize": 25,
      "pageNumber": 1
     },
     "segmentFilters": [
      {
       "type": "and",
       "predicates": [
        {
         "type": "dimension",
         "dimension": "dnis",
         "operator": "matches",
         "value": "${input.DNIS}"
        }
       ]
      }
     ]
    }

    Thank you all


    #ArchitectureandDesign

    ------------------------------
    Juan Carlos Fernandez
    Grupo Admiral España
    ------------------------------


  • 2.  RE: Duplicate records and contact lists

    Posted 09-13-2023 00:09
    No replies, thread closed.

    I would just check for the number in the list and if it exists, don't insert.  If not, then insert.  That eliminates the duplication and the downstream issues.



    ------------------------------
    Robert Wakefield-Carl
    ttec Digital
    Sr. Director - Innovation Architects
    Robert.WC@ttecdigital.com
    https://www.ttecDigital.com
    https://RobertWC.Blogspot.com
    ------------------------------



  • 3.  RE: Duplicate records and contact lists

    Posted 09-14-2023 02:13
    No replies, thread closed.

    Hello

    Thank you for your response Robert Wakefield-Carl

    What you propose seems like an interesting option to us.

    But how could we do this action?

    Should we implement a data action so that it reviews the contact list before entering the registration?

    What would this data action be like?

    The problem is that when uploading customer requests we upload the date on which they are made, so that the calls can be made in order.
    Therefore the system does not consider the record as a duplicate, since the date is different



    ------------------------------
    Juan Carlos Fernandez
    Grupo Admiral España
    ------------------------------