Genesys Cloud - Main

 View Only

Sign Up

  Thread closed by the administrator, not accepting new replies.
  • 1.  List of conversation Ids in a Queue

    Posted 09-13-2022 20:41
    No replies, thread closed.
    Hi,

    does anyone know how to get a list of conversation Ids in a queue?

    Regards.

    Francis.
    #Integrations

    ------------------------------
    Francis Hoang
    TeleApps Services Pty Ltd
    ------------------------------


  • 2.  RE: List of conversation Ids in a Queue

    Posted 09-14-2022 10:42
    No replies, thread closed.
    Use the conversation detail endpoint with a request like this
    https://developer.genesys.cloud/devapps/api-explorer#post-api-v2-analytics-conversations-details-query
    {
    	"interval": "2022-09-14T04:00:00.000Z/2022-09-15T04:00:00.000Z",
    	"order": "asc",
    	"orderBy": "conversationStart",
    	"paging": {
    		"pageSize": 25,
    		"pageNumber": 1
    	},
    	"segmentFilters": [
    		{
    			"type": "and",
    			"predicates": [
    				{
    					"type": "dimension",
    					"dimension": "queueId",
    					"operator": "matches",
    					"value": "insertYourQueueIdHere"
    				},
    				{
    					"type": "dimension",
    					"dimension": "segmentEnd",
    					"operator": "notExists"
    				}
    			]
    		}
    	]
    }​


    ------------------------------
    Melissa Bailey
    Genesys - Employees
    ------------------------------