v1
latestOpenAPI 3.0.02026-07-14235231.7 KBList conversations
This endpoint is DEPRECATED. Please use /v0.2/conversations.
List all conversations associated with your application. This endpoint required an admin JWT. To find all conversations for the currently logged in user, see GET /users/:id/conversations
Query parameters
Return the records that occurred after this point in time.
Return the records that occurred before this point in time.
The amount of records returned in this response
Return this amount of records in the response
Return page_size amount of conversations from this index in the response. That is, if your request returns 300 conversations, set record_index to 5 in order to return conversations 50 to 59. The default value is 0. That is, the first page_size calls.
Return calls from this index in the response
Return the records in ascending or descending order.
Response
List Conversations Response Payload Object.
Example response
{
"_embedded": {
"conversations": [
{
"_links": {
"self": {
"href": "https://api.nexmo.com/v0.1/conversations/CON-63f61863-4a51-4f6b-86e1-46edebio0391"
}
},
"name": "customer_chat",
"uuid": "CON-63f61863-4a51-4f6b-86e1-46edebio0391"
}
]
},
"_links": {
"self": {
"href": "https://api.nexmo.com/v0.1/conversations?page_size=2&record_index=10&"
}
},
"page_size": 50
}