Genesys Cloud - Main

 View Only

Sign Up

  Thread closed by the administrator, not accepting new replies.
  • 1.  Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-09-2019 11:20
    No replies, thread closed.
    Hi all,

    Is it possible to read an inbound email interaction while it is waiting (in-queue) and before it is transferred to an agent ?

    My question here, because there is sometimes we got calls from customers ask us if we have read their emails, however it was not  delivered yet to the agents and we cannot read it from Performance>Queue activity, we see only "active conversation"

    Any idea ?

    Thank you in advance.
    #PlatformAdministration
    #SystemAdministration
    #Unsure/Other


  • 2.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-09-2019 13:13
    No replies, thread closed.
    No, it is not possible to read an email that is waiting in queue.

    ------------------------------
    George Ganahl CCXP, GCA
    Principal Technology Consultant
    Genesys
    ------------------------------



  • 3.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-09-2019 14:25
    No replies, thread closed.
    Thank you George for the confirmation



  • 4.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-10-2019 04:08
    No replies, thread closed.
    Related to this topic, you can vote on the following idea to add it:
    https://purecloud.ideas.aha.io/ideas/CLDIG-I-278

    ------------------------------
    Mathieu Poulain
    AXA General Insurance Japan Limited.
    ------------------------------



  • 5.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-10-2019 05:50
    No replies, thread closed.
    Voted :-)

    ------------------------------
    Matt Calton
    Grove & Dean Ltd
    ------------------------------



  • 6.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-10-2019 06:24
    No replies, thread closed.
    Thank you Mathieu Poulain

    I have voted also


    ------------------------------
    Oudderhem Mostafa
    Coverage-Communication
    ------------------------------



  • 7.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-11-2019 10:25
    No replies, thread closed.
    Not to discount George's answer, because generally the PureCloud Conversations API is only available to applications that authenticate via Authorization Code Grant or Implict Grant.  However, I did some investigation a few weeks back for similar request and I was able to "read" an email in queue before it was delivered to an agent using Client Credentials Grant.  It seems that "read" access is all that you have available however, there is no possibility to perform any other Conversations API operation on the email.

    Here are the respective APIs that you should look at:

    GET /api/v2/conversations/emails/{conversationId}  -> This will return you information about the overall email conversation

    GET /api/v2/conversations/emails/{conversationId}/messages  -> This will return you a list of all the messageIds in the conversation

    GET /api/v2/conversations/emails/{conversationId}/messages/{messageId}  -> This will return you the actual text of the email.

    ------------------------------
    Jim Crespino
    Director, Developer Enablement
    Genesys
    https://developer.genesys.com
    ------------------------------



  • 8.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-11-2019 10:38
    No replies, thread closed.
    My bad. I was going from the standard views available, not looking at the custom API angle.

    So, yes Oudderhem, you can write an app that uses the API to read an email in queue per Jim's suggestion. Or use the Developer Tools on developer.mypurecloud.com if you just want to read the occasional email, as long as you know how to do what Jim is describing.

    ------------------------------
    George Ganahl CCXP, GCA
    Principal Technology Consultant
    Genesys
    ------------------------------



  • 9.  RE: Can we read an inbound email interaction while it is in-queue (waiting) ?

    Posted 04-12-2019 05:08
    No replies, thread closed.
    Thank you George and Jim, I will check with customer if they can go through API for this demande

    Thank you.