---
title: "Search conversations"
method: GET
path: "/beta/search/conversations"
tags: ["Search", "Conversations"]
deprecated: true
---

# Search conversations

`GET /beta/search/conversations`

> **Deprecated.**

NOTE: This endpoint is deprecated and is replaced with POST /search/conversations. Search for conversations containing a particular text.

## Query parameters

- `pageLimit` integer
- `pageKey` string
- `query` string, required
- `exactMatch` boolean

## Response `200`

The search results for the searched parameters

- SearchOutput
  - `data` ConversationSearchHit[]
    - `id` integer, required — Identifier of a Conversation where a match was found
    - `highlights` MapVectorString, required — Snippet of text where a match was found. Matched text will be wrapped in \<em\> tags.
    - `innerHits` ConversationSearchInnerHit[] — Deprecated: always returned as an empty list.
      - `id` string, required — Identifier of a sub-entity (such as a Message) where a match was found
      - `highlight` MapString, required
  - `meta` PaginationLinks
    - `previous` string — url
    - `next` string — url

## Other responses

- `400` — Invalid value extracted from request context, Invalid value for: query parameter pageLimit, Invalid value for: query parameter pageKey, Invalid value for: query parameter query, Invalid value for: query parameter exactMatch
- `401` — The user who issued the access token used in the request is not authorized to perform the operation
- `500` — Internal failure during request processing

---

[API](https://skmtc.net/dixa/apis/dixa-api.md) · [All operations](https://skmtc.net/dixa/apis/dixa-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dixa/dixa-api/revisions/5eaff14a2c46/schema)
