Skip to main content
GET
/
destinations
List all destinations configured for the account
curl --request GET \
  --url https://app.leadconduit.com/destinations \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "name": "Salesforce",
    "integration_name": "<string>",
    "integration_icon_url": "<string>",
    "instance_id": "<string>",
    "actions": [
      {
        "name": "Add Lead",
        "action_id": "Add Lead",
        "webhook_url": "<string>"
      }
    ],
    "flow_usages": {
      "count": 123,
      "flows": [
        {
          "id": "5fd4371e940df5a34a3888b2",
          "name": "<string>"
        }
      ]
    }
  }
]

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'

Query Parameters

include
enum<string>

Additional properties to include in the response.

Available options:
flow_usages

Response

OK

name
string

A customizable name of the destination.

Example:

"Salesforce"

integration_name
string

The name of the integration as published in the Marketplace.

integration_icon_url
string

Pre-signed URL for the integration icon.

instance_id
string

The Prismatic instance ID.

actions
object[]

A list of actions available in the configured instance. These map to Prismatic "flows" within an instance.

flow_usages
object

Contains data on flows in which the destination is used. This field is optional and is only included when the include=flow_usages query parameter is included in the request.