Skip to main content
PUT
/
v1
/
process
/
{id}
/
steps
curl --request PUT \
  --url "https://h3-api-gateway.dev.h3aven.com/v1/process/process-uuid" \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Overview

Update all steps
curl --request PUT \
  --url "https://h3-api-gateway.dev.h3aven.com/v1/process/process-uuid" \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Request Examples

Check the different examples
{
  "name": "Contract Approval Process",
  "iconName": "document-check",
  "steps": [
    {
      "id": "step-456",
      "label": "Document Review",
      "policyNames": ["HR"],
      "parameters": [{
        "id": "param-id",
        "label": "number",
        "name": "number",
        "type": "TEXT"
      }]
    },
    {
      "id": "step-789",
      "label": "Final Approval",
      "policyNames": ["CFO"]
    }
  ]
}

Path Parameters

id
string
required

Body

application/json
name
string
iconName
string
label
string
steps
object[]

Response

204

ok