Flows  /  Validate flow

Validate flow

POST/v1/flows/{id}/validate

Check whether a flow is ready to publish, without changing anything. ready is true when there's nothing blocking; otherwise problems lists what to fix.

Path parameters
id
string · required
The flow id.
Response fields
ready
boolean
True when the flow can be published as-is.
problems
array
Issues blocking publish. Empty when ready.
POST/v1/flows/{id}/validate
curl -X POST https://app.converly.io/api/v1/flows/flow_0Dzj…/validate \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "ready": true,
  "problems": []
}