Flows  /  Unpublish flow

Unpublish flow

POST/v1/flows/{id}/unpublish

Take a published flow offline. It stops delivering and returns to draft.

Path parameters
id
string · required
The flow id.
Response fields
id
string
Prefixed identifier, e.g. flow_0Dzj….
site_id
string
The site this flow belongs to.
name
string
Up to 255 characters.
status
string
draft (not delivering), published (live), or archived.
trigger_config
object | null
What fires the flow, e.g. { integrationId, pageFilter }.
trigger_name
string | null
Resolved display name of the trigger, e.g. Gravity Forms.
actions_config
array | null
The destinations that receive the conversion.
published_at
timestamp | null
When it was last published. null while in draft.
POST/v1/flows/{id}/unpublish
curl -X POST https://app.converly.io/api/v1/flows/flow_0Dzj…/unpublish \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "id": "flow_0Dzj…",
  "status": "draft",
  "published_at": null
}