Skip to main content
POST
Receive asynchronous notifications (partner webhook)
Use this endpoint specification to implement a endpoint in your application that receives notifications from the Suki platform. This endpoint should be hosted by your application to receive notifications about Form filling completion or failure.
Host this endpoint on your server. Suki sends a POST when Form filling processing completes or fails. The payload session_id is the Form filling session ID from Create Form Filling session.
Learn more about how webhooks work and how to implement your webhook endpoint in Notification webhook for partners.

Code examples

Body

application/json

Webhook payload Suki sends when session processing fails.

encounter_id
string

Id of the encounter to which the payload belongs.

Example:

"29de56bc-960a-4cd5-b18f-79a798d62874"

error_code
string

Error code.

Example:

"ERROR_CODE_TRANSCRIPTION"

error_detail
string

Details of the error, if any.

Example:

"Error in transcription"

session_id
string

Id of the session that failed.

Example:

"20965414-929a-4f71-a3e5-b92bec07d086"

status
string
Example:

"failure"

Response

Last modified on June 30, 2026