Home//
REST API Reference
/- Fin Agent Replied Event
Discover Fin's capabilities
Ask Fin
Reply to Fin
Run a Fin procedure
Escalate to a human
Submit a CSAT rating
Start a conversation with Fin
Fin Agent Attachment
Fin Agent Attribute Errors
Fin Agent Conversation Metadata
Fin Agent CSAT Requested Event
Fin Agent Message
Fin Agent Reply Chunk Event
Fin Agent Settings
Fin Agent Status Updated Event
Fin Agent User
Fin Agent Replied Event
Event fired when Fin replies to a user. The content of the response will be contained in the message object. Intermediate replies have status 'replying'; a separate fin_status_updated event with 'awaiting_user_reply' fires once Fin's reply is done.
Fin's current status.
- replying: Intermediate reply part; more parts may follow
- awaiting_user_reply: Legacy status; instead use the fin_status_updated event with 'awaiting_user_reply', which fires once Fin's reply is done
Enum:"replying""awaiting_user_reply"
Example:"replying"
Optional. Present when the reply was generated via streaming. Correlates this event with the fin_reply_chunk events that preceded it. Use this to know when to replace streamed chunk_text with the final message body.
Example:"a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"
{ "event_name": "fin_replied", "conversation_id": "123456", "user_id": "7891", "message": { "id": "98765", "author": "fin", "body": "<p>You can see your account details by clicking on the <em>Account</em> tab in the top right corner of the screen.</p>", "timestamp_ms": "2025-01-24T09:01:00.456Z" }, "status": "replying", "stream_id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4", "created_at_ms": "2025-01-24T10:00:00.123Z" }