provider Conversations GET /conversations/search/{query}
@utdk/front /conversations/search/{query}
Search conversations
Search for conversations. Response will include a count of total matches and an array of conversations in descending order by last activity. See the [search syntax documentation](https://dev.frontapp.com/docs/search-1) for usage examples. **Note:** This endpoint is subject to [proportional rate limiting](https://dev.frontapp.com/docs/rate-limiting#additional-proportional-limiting) at 40% of your company's rate limit. Required scope: `conversations:read`
query path required
Search query string. See [Search](https://dev.frontapp.com/docs/search-1) topic for usage details.
string
limit query
Max number of results per [page](https://dev.frontapp.com/docs/pagination)
integer
page_token query
Token to use to request the [next page](https://dev.frontapp.com/docs/pagination)
string

Try it

Authentication
Configure credentials for Core API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

searchConversations
GET/conversations/search/{query}
Search for conversations. Response will include a count of total matches and an array of conversations in descending order by last activity. See the [search syntax documentation](https://dev.frontapp.com/docs/search-1) for usage examples. **Note:** This endpoint is subject to [proportional rate limiting](https://dev.frontapp.com/docs/rate-limiting#additional-proportional-limiting) at 40% of your company's rate limit. Required scope: `conversations:read`

Parameters

required

Search query string. See [Search](https://dev.frontapp.com/docs/search-1) topic for usage details.

Max number of results per [page](https://dev.frontapp.com/docs/pagination)

Token to use to request the [next page](https://dev.frontapp.com/docs/pagination)

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import front from '@utdk/front';

await front.searchConversations({
  "query": "inbox:inb_123 tag:tag_345"
})