provider Conversations POST /conversations/{conversation_id}/followers
@utdk/front /conversations/{conversation_id}/followers
Add conversation followers
Adds teammates to the list of followers of a conversation. Required scope: `conversations:write`
conversation_id path required
The conversation ID
string
ignore_errors query
Whether to ignore invalid teammate IDs and continue adding valid ones.
boolean

Try it

Authentication
Configure credentials for Core API
addConversationFollowers
POST/conversations/{conversation_id}/followers
Adds teammates to the list of followers of a conversation. Required scope: `conversations:write`

Parameters

required

The conversation ID

Whether to ignore invalid teammate IDs and continue adding valid ones.

Input

required

IDs of the teammate to add to the followers list. Alternatively, you can supply the teammates as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).

Configure credentials above to enable sending.

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

TypeScript

import front from '@utdk/front';

await front.addConversationFollowers({
  "conversation_id": "cnv_123",
  "ignore_errors": false
})