Skip to main content
POST
cURL
Use this endpoint to submit feedback for a Form filling ambient session. This endpoint calls SubmitFormFillingFeedback, which is separate from the ambient SubmitFeedback API.

Requirements

  • ambient_session_id must reference a Form filling session with the underlying job type FORM_FILLING_ORCHESTRATION. If the session type does not match, the API returns a FailedPrecondition error.
  • Set entity to AMBIENT_GENERATED_MEDICAL_FORM when submitting feedback for a generated medical form.
  • feedback_metadata.form_id is required when entity is AMBIENT_GENERATED_MEDICAL_FORM. Pass the generated medical form instance ID. The API uses this ID to load the form details before forwarding the request to the feedback service.
On success, the API returns a feedback_id. The value matches the provided ambient_session_id, consistent with the ambient feedback API behavior.

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.

entity
string
required

Entity type you are rating. For form-filling sessions, use AMBIENT_GENERATED_MEDICAL_FORM for generated medical form output.

Example:

"AMBIENT_GENERATED_MEDICAL_FORM"

Body

application/json

Quantitative rating and optional qualitative comments for the specified form-filling entity.

feedback
object
required

Required quantitative and qualitative feedback.

feedback_metadata
object

Required when entity is AMBIENT_GENERATED_MEDICAL_FORM.

Response

Resource created successfully.

Response body for /api/v1/form-filling/session/{ambient_session_id}/{entity}/feedback.

feedback_id
string

feedback identifier

Last modified on August 13, 2026