provider Tags GET
/tags/{tag_id}/conversations @utdk/front
/tags/{tag_id}/conversations List tagged conversations
List the conversations tagged with a tag. For more advanced filtering, see the [search endpoint](https://dev.frontapp.com/reference/conversations#search-conversations).
Required scope: `conversations:read`
- tag_id path required
- The ID of the tag
- 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
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.
Code snippet
Updates live as you fill in the form above.
TypeScript
import front from '@utdk/front';
await front.listTaggedConversations({
"tag_id": "tag_123"
})