Trying to push a proactive notification via the Guest API to a user whose web messaging session ended yesterday. The goal is to link this new interaction to the old trace context for OTel correlation.
POST /api/v2/conversations/messaging/{conversationId}/guest/messages
Content-Type: application/json
{
"type": "text",
"text": "Follow-up on your previous inquiry."
}
Getting a 403 Forbidden. The docs mention the session must be active, but we need to bridge the gap for distributed tracing. Is there a workaround or a different endpoint for re-engaging inactive guests?