GET
/
workflows
/
node-types
Get available node types
curl --request GET \
  --url https://v1.api.altostrat.io/workflows/node-types \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "webhook",
    "name": "Webhook",
    "category": "trigger",
    "validation_rules": {
      "data.method": [
        "required",
        "in:GET,POST,PUT,PATCH,DELETE"
      ],
      "data.url\"": [
        "required",
        "url_with_template"
      ]
    }
  }
]

Authorizations

Authorization
string
header
required

Enter the JWT token.

Response

200 - application/json

A list of available node types.

The response is of type object[].