Trying to trace CSAT responses back to specific interactions via /api/v2/quality/surveys. The API returns survey data, but the interactionId seems incomplete for linking to our OTel spans in Jaeger. Is there a way to inject custom metadata or use the interactionId to fetch the full trace context? The response payload just gives me the survey ID and score, which isn’t enough for distributed tracing. Here’s the call structure I’m using:
client.qualityApi.getQualitySurveys({ interactionId: '123' });
The span ends abruptly after the fetch.