GET
/
workflows
/
{workflowId}
/
steps
/
{stepId}
Get step
curl --request GET \
  --url https://core.ravenna.ai/api/workflows/{workflowId}/steps/{stepId} \
  --header 'x-ravenna-api-token: <api-key>'
{
  "id": "<string>",
  "title": "<string>",
  "description": "<string>",
  "action": "<string>",
  "inputs": {},
  "metadata": {
    "groupId": "<string>",
    "isHidden": true,
    "isNotDeletable": true,
    "isNotDuplicable": true,
    "isNotReOrdable": true
  },
  "suggestions": [
    {
      "field": "<any>",
      "stepId": "<string>"
    }
  ]
}

Authorizations

x-ravenna-api-token
string
header
required

Path Parameters

workflowId
string
required
stepId
string
required

Query Parameters

suggestions
boolean

Response

Successful response

id
string
required
title
string
required
action
string
required
inputs
object
required
description
string | null
metadata
object
suggestions
object[]