Skip to main content
POST
/
run
/
{session_id}
/
new_input_variables
Submit new input variables
curl --request POST \
  --url https://api.cloudcruise.com/run/{session_id}/new_input_variables \
  --header 'Content-Type: application/json' \
  --header 'cc-key: <api-key>' \
  --data '
{
  "input_variables": {
    "patient_id": "CORRECTED-789"
  }
}
'
{
  "session_id": "<string>",
  "success": true
}

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Path Parameters

session_id
string
required

The unique identifier for the workflow execution session

Body

application/json
input_variables
object
required

Key-value pairs of corrected input variables. Only include the variables that need to be updated.

Example:
{ "patient_id": "CORRECTED-789" }

Response

Input variables accepted

session_id
string

The session ID that received the new input

success
boolean

Whether the input was accepted