Sending an outbound call via POST /api/v2/conversations/calls with traceparent in headers. The request succeeds with 201 Created but the span never appears in Jaeger. Here’s the Python snippet:
headers = {'Authorization': f'Bearer {token}', 'traceparent': span_context.to_header()}
requests.post(url, headers=headers, json=payload)
Is the Conversations API stripping custom headers or ignoring W3C propagation?