I’m trying to move a call to a different queue using the Conversations API. I’ve got the participant ID and the target queue ID. My PATCH body looks like this:
{ “routing”: { “queueId”: “new-queue-id”, “priority”: 0 } }
It returns a 400 Bad Request. The docs say I need to set the state to queued, but I’m not sure where that goes in the JSON. I’ve tried adding it to the root object, but that just breaks the schema. What’s the right structure for a programmatic transfer?