Skip to main content
GET
/
flows
/
{flow_id}
/
sources
/
{source_id}
/
meta
Retrieve metadata for a specific source within a flow
curl --request GET \
  --url https://app.leadconduit.com/flows/{flow_id}/sources/{source_id}/meta \
  --header 'Authorization: Basic <encoded-value>'
{
  "enabled": true,
  "account": {
    "id": "53a310fa9d29c9c72100006c",
    "name": "ActiveProspect, Inc."
  },
  "flow": {
    "id": "5fd4371e940df5a34a3888b2",
    "name": "<string>"
  },
  "source": {
    "id": "5fd4371e940df5a34a3888b2",
    "name": "<string>",
    "authentication_required": false
  },
  "params": [
    {
      "name": "first_name",
      "label": "First Name",
      "description": "First name",
      "type": "first_name",
      "required": "no",
      "variable": "first_name",
      "examples": [
        "Mike",
        "Robert",
        "Janet"
      ]
    }
  ],
  "pingable": true,
  "ping_enabled": false,
  "updated_at": "2025-03-20T15:06:01.777Z",
  "authorized_account": true,
  "hours_of_operation": {},
  "acceptance_criteria": {
    "rule_set": {
      "op": "and",
      "rules": [
        {
          "lhv": "lead.state",
          "op": "is equal to",
          "rhv": "TX",
          "id": "1aacd0",
          "rule_set": "<unknown>"
        }
      ],
      "id": "0d144a"
    },
    "outcome": "failure",
    "reason": "Lead must live in TX"
  },
  "flow_acceptance_criteria": {},
  "flow_pricing": null,
  "flow_pricing_service": {
    "service_id": "5fd4371e940df5a34a3888b2",
    "fallback_price": 123
  },
  "source_pricing": null,
  "source_pricing_service": {
    "service_id": "5fd4371e940df5a34a3888b2",
    "fallback_price": 123
  }
}

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

flow_id
string
required

The ID of the flow

Example:

"67dc2ec447ba19de15745945"

source_id
string
required

The ID of the source within the flow

Example:

"53a310fa9d29c9c72100006c"

Response

Successful response with source metadata

enabled
boolean
required
Example:

true

account
object
required
flow
object
required
source
object
required
params
object[]
required
pingable
boolean
required
Example:

true

ping_enabled
boolean
required
Example:

false

updated_at
string<date-time>
required
Example:

"2025-03-20T15:06:01.777Z"

authorized_account
boolean
required
Example:

true

hours_of_operation
object
acceptance_criteria
Acceptance Criteria · object

A submitted lead that fails an acceptance criteria rule will be rejected. Lead submission will result in a failure outcome.

flow_acceptance_criteria
object
flow_pricing
object
Example:

null

flow_pricing_service
object

The configuration required on a Source or Flow to define a Pricing Service for lead pricing.

source_pricing
object
Example:

null

source_pricing_service
object

The configuration required on a Source or Flow to define a Pricing Service for lead pricing.