Test Workflow
curl --request POST \
--url https://api.example.com/v1/workflows/{workflow_uuid}/test \
--header 'Content-Type: application/json' \
--data '
{
"indicator_type": "ip",
"indicator_value": "1.2.3.4",
"mock_http_responses": {},
"live_http": false
}
'{
"data": {
"success": true,
"message": "<string>",
"log_output": "<string>",
"duration_ms": 123,
"result_data": {}
},
"meta": {}
}Workflows
Test Workflow
Execute a workflow in a sandboxed test environment.
All outbound HTTP from ctx.http is intercepted — no real external calls. Integration clients (Okta, Entra) are replaced with mock versions that record calls without executing them. Returns the WorkflowResult and captured log output.
POST
/
v1
/
workflows
/
{workflow_uuid}
/
test
Test Workflow
curl --request POST \
--url https://api.example.com/v1/workflows/{workflow_uuid}/test \
--header 'Content-Type: application/json' \
--data '
{
"indicator_type": "ip",
"indicator_value": "1.2.3.4",
"mock_http_responses": {},
"live_http": false
}
'{
"data": {
"success": true,
"message": "<string>",
"log_output": "<string>",
"duration_ms": 123,
"result_data": {}
},
"meta": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.calseta.com/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Body
application/json
⌘I

