Attempting to eject a participant from an active conference using PUT /api/v2/conversations/voice/{conversationId}/participants/{participantId} with the body { action: "DROP_PARTICIPANT" }. The request fails with a 403 Forbidden, even though the token has conversation:read and conversation:write scopes. Here’s the snippet:
const res = await client.conversations.updateParticipant(conversationId, participantId, {
action: 'DROP_PARTICIPANT'
});
The user is the conversation initiator. Am I missing a specific permission or is the endpoint deprecated for this use case?