Skip to main content
GET
/
form_templates
/
{slug}
/
steps
Get Form Template Steps
curl --request GET \
  --url https://connect.penbox.io/v1/form_templates/{slug}/steps \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "elements": [
      {
        "key": "<string>",
        "type": "<string>",
        "label": "<string>",
        "required": true
      }
    ]
  }
]
Retrieve the form steps/structure for a specific form template.
Use this endpoint to understand the structure of a form template before creating forms, or to build a custom form UI.

Authorizations

Authorization
string
header
required

API token (starts with pnbx_). Create at https://app.penbox.io/workspace/settings/api. Include as: Authorization: Bearer {token}

Path Parameters

slug
string
required

Flow slug identifier

Response

200 - application/json

Successful response

id
string

Step identifier

title
string

Step title

description
string

Step description

elements
object[]

Form elements in this step