So I’m seeing a very odd bug with patching participant attributes during a live voice leg. my deno deploy handler fires fetch(\https://api.mypurecloud.com/api/v2/conversations/voice/conversations/${convId}/participants/${partId}\`, { method: ‘PATCH’, headers: { ‘Content-Type’: ‘application/json’, ‘If-Match’: etag }, body: JSON.stringify({ externalContact: { attributes: { last_queue_time: 120 } } }) })` but it’s consistently returning a 409 conflict even though the etag matches the latest get response. payload looks fine to me. just gonna retry with exponential backoff for now.