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
Update an existing step with new data. You can modify basic step information, policies, dependencies, and other configuration options.
Request Examples
The request body can include various fields depending on what you want to update. Here are common update scenarios:
Basic Update
Update with Policies and Dependencies
Update Policy Names
Update Legal Contract Information
Minimal Field Update
Clear Policies and Dependencies
Update Process Association
Update Parameters - Basic Fields
Update Parameters with Advanced Options
Update Parameters with Option Items
Update Parameters with Full Configuration
{
"label" : "Updated Document Review" ,
"description" : "Review all submitted contract documents carefully"
}
Example Request
curl --request PUT \
--url "https://h3-api-gateway.dev.h3aven.com/v1/steps/{id}" \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"label": "Updated Document Review",
"description": "Review all submitted contract documents carefully"
}'
Response
The endpoint returns a 204 No Content status code on successful update, indicating the step has been updated successfully without returning the updated data in the response body.