provider Teammates GET
/teammates/{teammate_id}/conversations @utdk/front
/teammates/{teammate_id}/conversations List assigned conversations
List the conversations assigned to a teammate in reverse chronological order (most recently updated first). For more advanced filtering, see the [search endpoint](https://dev.frontapp.com/reference/conversations#search-conversations).
Required scope: `conversations:read`
- teammate_id path required
- The teammate ID. Alternatively, you can supply an email as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).
- 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.listAssignedConversations({
"teammate_id": "tea_123"
})