Documentation Index Fetch the complete documentation index at: https://docs.h3aven.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
When the simplified=true query parameter is passed, the response returns a streamlined version of the step data with only essential fields. This reduces payload size and improves performance for use cases that don’t require full step details.
Example Request
curl --request GET \
--url "https://h3-api-gateway.dev.h3aven.com/v1/steps/{id}?simplified=true" \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Examples
The response structure depends on whether the step has configured policies and dependencies. Here are both variants:
Simple Response
Response with Policies and Dependencies
Response with Entity Update with hideColumns
Response with Entity Update without hideColumns
Response with Select and optionItems
{
"id" : "step-456" ,
"label" : "Document Review" ,
"parameters" : [
{
"id" : "param-789" ,
"name" : "contractDocument" ,
"type" : "ATTACHMENT"
},
{
"id" : "param-101" ,
"name" : "approvalStatus" ,
"type" : "SELECT"
}
]
}