---
title: "List conversations"
method: GET
path: "/conversations"
tags: ["conversation"]
deprecated: true
---

# List conversations

`GET /conversations`

> **Deprecated.**

This endpoint is **DEPRECATED**. Please use [/v0.2/conversations](/api/conversation.v2#get-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](#getuserConversations)

## Query parameters

- `date_start` string, dateTime
- `date_end` string, dateTime
- `page_size` number — The amount of records returned in this response
- `record_index` number — 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.
- `order` 'asc' | 'desc' | 'ASC' | 'DESC'

## Response `200`

List Conversations Response Payload Object.

- object
  - `_embedded` object, required — A list of conversation objects. See the [get details of a specific conversation](#retrieveConversation) response fields for a description of the nested objects
    - `conversations` object[], required
      - `_links` object
        - `self` object
          - `href` string, url — A link towards a conversation included in Conversation API
      - `name` string, required — Unique name for a conversation
      - `uuid` string, required — The unique identifier for this conversation
  - `_links` LinksConversationsList, required — A series of links between resources in this API in the http://stateless.co/hal_specification.html.
    - `self` object, required
      - `href` string, url, required — A link towards a conversations list included in Conversation API
  - `count` number, required — The total number of records returned by your request.
  - `page_size` number, required — The amount of records returned in this response
  - `record_index` number, required — 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.

---

[API](https://skmtc.net/vonage/apis/conversation.md) · [All operations](https://skmtc.net/vonage/apis/conversation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vonage/conversation/versions/9b13ac114b43/schema)
