provider Links GET /links/{link_id}/conversations
@utdk/front /links/{link_id}/conversations
List link conversations
List the conversations linked to a specific link. For more advanced filtering, see the [search endpoint](https://dev.frontapp.com/reference/conversations#search-conversations). For more information on links, see the [Links](https://dev.frontapp.com/reference/links) topic. Required scope: `conversations:read`
link_id path required
The Link ID
string
q query
[Search query object](https://dev.frontapp.com/docs/query-object-q) with a property `statuses`, whose value should be a list of conversation statuses (`assigned`, `unassigned`, `archived`, or `trashed`). If ticketing is enabled, this endpoint accepts either `status_categories` (`open`, `waiting`, `resolved`) or `status_ids` as an alternative.
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
sort_by query
Field used to sort the conversations. Only supports `date`.
string
sort_order query
Order by which results should be sorted
enum: asc, desc

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.

listLinkConversations
GET/links/{link_id}/conversations
List the conversations linked to a specific link. For more advanced filtering, see the [search endpoint](https://dev.frontapp.com/reference/conversations#search-conversations). For more information on links, see the [Links](https://dev.frontapp.com/reference/links) topic. Required scope: `conversations:read`

Parameters

required

The Link ID

[Search query object](https://dev.frontapp.com/docs/query-object-q) with a property `statuses`, whose value should be a list of conversation statuses (`assigned`, `unassigned`, `archived`, or `trashed`). If ticketing is enabled, this endpoint accepts either `status_categories` (`open`, `waiting`, `resolved`) or `status_ids` as an alternative.

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)

Field used to sort the conversations. Only supports `date`.

Order by which results should be sorted

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.listLinkConversations({
  "link_id": "top_123"
})