Skip to main content
PUT
/
records
/
{record}
/
steps
Run a Step
curl --request PUT \
  --url https://next.floweq.com/api/v1/records/{record}/steps \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "pdf_create",
  "inputs": {
    "pdf_filename": "<string>",
    "template_id": "<string>"
  }
}
'
{
  "message": "<string>",
  "details": "<unknown>"
}

Path Parameters

record
string
required

The Workboard record ID.

Body

application/json
type
enum<string>
required

The step type to run. Currently only 'pdf_create' is supported.

Available options:
pdf_create
inputs
object
required

Step-specific input parameters.

Response

Step executed successfully.

message
string
required

Step execution result message.

details
any

Step-specific output details.

Last modified on April 15, 2026