I'm currently calling a data action using below config
Request URL Template
/api/v2/analytics/conversations/details/query
Headers
Request Body Template
{
"interval": "${input.Interval}",
"order": "desc",
"orderBy": "segmentStart",
"paging": {
"pageSize": 25,
"pageNumber": 1
},
"segmentFilters": [
{
"type": "and",
"predicates": [
{
"type": "dimension",
"dimension": "callbackNumber",
"operator": "matches",
"value": "${input.CallbackNumber}"
},
{
"type": "dimension",
"dimension": "purpose",
"operator": "matches",
"value": "acd"
},
{
"type": "dimension",
"dimension": "queueId",
"operator": "matches",
"value": "${input.QueueId}"
},
{
"type": "dimension",
"dimension": "segmentEnd",
"operator": "notExists"
},
{
"type": "dimension",
"dimension": "mediaType",
"operator": "matches",
"value": "callback"
}
]
}
],
"conversationFilters": [
{
"type": "and",
"predicates": [
{
"type": "dimension",
"dimension": "conversationEnd",
"operator": "notExists"
}
]
}
]
}
Response
{
"translationMap": {},
"translationMapDefaults": {},
"successTemplate": "${rawResult}"
}
Action Contracts
Json Results
Question:
- how would I return the list of conversation ids under "conversations.conversationId" as a variable in the Architect Flow.