Skip to main content
POST
/
flows
/
{id}
/
deploy
Deploy a saved flow to production
curl --request POST \
  --url https://app.leadconduit.com/flows/{id}/deploy \
  --header 'Authorization: Basic <encoded-value>'
{
  "message": "Your flow was deployed and the most recent changes are now live"
}

Documentation Index

Fetch the complete documentation index at: https://developers.activeprospect.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

LeadConduit uses HTTP Basic Authentication with the username API and your API key as the password.

For example: API:1f1b96c9150d8050e858c043d543bb4eadae0e6f'

Path Parameters

id
string
required
read-only

ID of the flow to deploy 24 character alpha-numeric BSON identifier

Pattern: ^[0-9a-fA-F]{24}$
Example:

"5fd4371e940df5a34a3888b2"

Response

200 - application/json

OK

message
string

Success message for deploying a flow

Example:

"Your flow was deployed and the most recent changes are now live"