Skip to main content
POST
/
run
/
{session_id}
/
user_interaction
Submit user interaction data
curl --request POST \
  --url https://api.cloudcruise.com/run/{session_id}/user_interaction \
  --header 'Content-Type: application/json' \
  --header 'cc-key: <api-key>' \
  --data '
{
  "verification_code": "123456"
}
'
{
  "session_id": "<string>",
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.cloudcruise.com/llms.txt

Use this file to discover all available pages before exploring further.

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

A dictionary containing workflow-specific user input data

Response

User interaction data accepted

session_id
string
required

The workflow execution session ID

success
boolean
required
Example:

true