How do I properly push a custom attribute to a participant during an active voice session using PATCH /api/v2/conversations/interactions/{id}? I’m trying to sync our OTel trace context to Genesys attributes so the span survives the handoff. The request returns a 200 OK, but the attribute never shows up in the interaction history or downstream Data Actions. Here’s the payload I’m sending:
{
"participants": [
{
"id": "part-123",
"attributes": {
"otel_trace_id": "abc-123"
}
}
]
}
Is there a specific flag needed to persist this?