How do we actually push a wrap-up code to a conversation once it’s already wrapped up? The docs don’t show PATCH for active calls.
Tried hitting PATCH /api/v2/conversations/voice/{id} with a status change, but it just throws a 409 Conflict.
const updateWrap = await client.api.conversationsVoiceConversationsApi.postConversationsVoiceWrapup({
conversationId: callId,
body: { code: { id: “wrap-123” } }
});
Promise rejects with a timeout. SDK cache probably stale.