Trying to drop a specific participant from an active conference using the .NET SDK. The docs say to POST to /api/v2/conversations/voice/{conversationId}/participants/{participantId}/disconnect with an empty body, but it keeps returning a 400 Bad Request.
Here’s the call:
var result = await _conversationsApi.PostVoiceConversationParticipantAsync(conversationId, participantId, new DisconnectParticipantRequest());
The error payload just says "error": "Invalid request". I’ve verified the IDs are correct by listing participants first. What am I missing?