Could someone explain why my Go client receives a 422 Unprocessable Entity when attempting to transfer an active voice conversation to a different queue using the PATCH endpoint? The documentation suggests updating the to object, but the error persists regardless of the payload structure.
HTTP 422: Validation Failed - Invalid transfer destination
go
req := map[string]interface{}{
"to": map[string]interface{}{
"uri": "/api/v2/queues/12345",
},
}
// PATCH /api/v2/conv/voice/{conversationId}
Am I missing a specific field in the JSON body required for queue-to-queue transfers?