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
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.addConversationFollowers({
"conversation_id": "cnv_123",
"ignore_errors": false
})