Genesys Cloud - Main

 View Only

Sign Up

  Thread closed by the administrator, not accepting new replies.
  • 1.  Customized Alert

    Posted 01-08-2024 11:04
    No replies, thread closed.

    Hello All- Recently we have experienced a potential security breach in our environment. To mitigate the same Client is looking for a customized alert system which will send a notification to any international outbound call that has a talk time more than 30 minutes. Please let me know if anybody has any idea how we can implement a customized alert system.


    #PlatformAdministration

    ------------------------------
    Swarup Das
    Accenture Solutions Private Limited
    ------------------------------


  • 2.  RE: Customized Alert

    Posted 01-08-2024 14:10
    No replies, thread closed.

    There might be some AppFoundry products that does this more cleanly.

    And I haven't had to do this myself so this is purely theory crafting on my part:

    If all international calls are made on behalf of the same queue, then you can just use the standard alerts in performance workspace to setup an alert for when duration is greater than 30 minutes. 

    Otherwise one option would be to use the event triggers (or amazon event bridge) to trigger for outbound calls would be to In the workflow, check if it is an international number, if it isn't end the workflow. If it is delay/wait 30 minutes, check if the conversation is still active, if it is, send notification.  Workflows have a Send Notification Action that will send an email to any user you want.

    There might be other better ways to do it, but that is my two cents.



    ------------------------------
    Anton Vroon
    ------------------------------



  • 3.  RE: Customized Alert

    Posted 01-09-2024 08:45
    No replies, thread closed.

    Thank you Anton for the ideas. we do not have an outbound queue. if we create even triggers using workflow, will it work for any international calls automatically or we have to configuration level mapping with outbound route.



    ------------------------------
    Swarup Das
    Accenture Solutions Private Limited
    ------------------------------



  • 4.  RE: Customized Alert
    Best Answer

    Posted 01-09-2024 13:32
    No replies, thread closed.

    For this you would use event trigger v2.detail.events.conversation.{id}.user.start

    Which triggers every time an agent joins a conversation (and join includes starting a new one), part of the filter for this you would specify  direction as outbound and if there was a queue the queue, and maybe set the mediatype to voice. 

    When that condition is met it triggers the workflow, this will include ALL outbound, international or national makes no difference.

    In the Workflow (which is a type of flow) logic you would then check if it is national or international with your usual ani checks, and if it is not international end the workflow, if it is wait, check then send notification



    ------------------------------
    Anton Vroon
    ------------------------------