Skip to main content
GET
cURL
Use this endpoint to know the processing status for a Form filling session. Use your ambient session identifier (id) to identify the session you want to check the status of.

Form filling session status values

Use the following status values to track session progress:
  • created: The system creates the Form filling session but does not start it yet.
  • ready: The Form filling session starts and is ready for audio streaming.
  • running: The Form filling session processes audio and generates content.
  • staged: The Form filling session is staged and is ready to be processed.
  • aborted: The user or client cancels the Form filling session.
  • failed: An error stops the Form filling session during processing.
  • completed: The Form filling session completes successfully and generates the final content.

Code examples

The code examples below use placeholders and the stage host sdp.suki-stage.com only as examples. For credentials, base URLs, where to run Python or TypeScript, CORS, and cURL, refer to Using code examples in your integration in the API Reference Guidelines.

Authorizations

sdp_suki_token
string
header
required

Suki access token (suki_token) from Login or Register. Expires after one hour.

Headers

sdp_provider_id
string

Optional for standard partners.

Required for:

  • Bearer authentication. Use the same provider_id returned by the Login or Register API.
  • Single Auth Token authentication. Include the same provider_id on every request as sdp_provider_id.
Example:

"provider-123"

Path Parameters

ambient_session_id
string
required

Form-filling session ID. The path parameter is named ambient_session_id, but this value identifies the form-filling session, not an ambient clinical documentation session. Use the ID returned from Create Form filling Session, or the UUID you supplied in that request.

Response

Request succeeded.

Current processing status for a form-filling session.

status
enum<string>

Processing state of the form-filling session. Poll until the status is completed, failed, or aborted.

Available options:
created,
ready,
running,
paused,
aborted,
failed,
completed
Example:

"completed"

Last modified on August 13, 2026