LeadDyno API Documentation
This is the complete API documentation for connecting to the LeadDyno API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet LeadDyno: Manage affiliates, leads, commissions, purchases, and campaigns. Keep reading to get started.
Quickstart
Before you run your first LeadDyno request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one LeadDyno connection — create or choose one in Connections. Note its
connectionId.
Every LeadDyno action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/leadDyno/latest/actions/{actionSlug}You need a MindCloud API Key and a LeadDyno connection. Then call an action such as Generate Affiliate Sign-In Link:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/leadDyno/latest/actions/generate-affiliate-sign-in-link" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authentication
Authentication has two layers. Your MindCloud API Key authenticates the request to MindCloud, sent as a Bearer token in the Authorization header. The connectionId selects the connected LeadDyno account that should run the action. MindCloud stores and refreshes the LeadDyno credentials behind that connection, so you never send provider tokens with your requests.
Pass connectionId in the query string for GET and DELETE actions, and in the JSON body for POST, PUT, and PATCH actions. Keep your MindCloud API Key on your server; do not ship it in browser code, mobile apps, public repositories, or logs.
Connect LeadDyno
You need access to a LeadDyno account that can view the Private API keyA secret value from LeadDyno that lets the connection authenticate API requests..
- Open your LeadDyno profile
Sign in to LeadDyno and open the profile page where LeadDyno shows the API key section.
Account → Profile - Copy the Private API keyA secret value from LeadDyno that lets the connection authenticate API requests.
Copy the Private API keyA secret value from LeadDyno that lets the connection authenticate API requests. from the API key section. Use the private key, not the public tracking key.
- Paste it into the connection form
Paste the copied value into the Private API keyA secret value from LeadDyno that lets the connection authenticate API requests. field, then save the connection.
LeadDyno actions
All 40 published actions for this LeadDyno version. Each page documents the endpoint, arguments, and response controls.
- PUTApprove Affiliate
- PUTApprove Purchase
- PUTArchive Affiliate
- POSTCreate Affiliate
- POSTCreate Affiliate Commission
- POSTCreate Lead
- POSTCreate Purchase
- POSTCreate Visitor
- GETGenerate Affiliate Sign-In Link
- GETList Affiliates
- GETList Campaigns
- GETList Commissions
- GETList Leads
- GETList Purchases
- GETList Visitors
- PUTMark Commissions As Paid
- PUTReject Affiliate
- PUTReject Purchase
- GETRetrieve Affiliate By Code
- GETRetrieve Affiliate By Email
- GETRetrieve Affiliate By ID
- GETRetrieve Affiliate Commission Total
- GETRetrieve Affiliate Commissions
- GETRetrieve Affiliate Leads
- GETRetrieve Affiliate Purchases
- GETRetrieve Campaign By ID
- GETRetrieve Commission Totals
- GETRetrieve Lead By Email
- GETRetrieve Lead By ID
- GETRetrieve Lead Purchases
- GETRetrieve Purchase By Code
- GETRetrieve Purchase By ID
- GETRetrieve Purchase Commissions
- GETRetrieve Total Lead Count
- GETRetrieve Total Purchase Count
- GETRetrieve Total Visitor Count
- PUTUnarchive Affiliate
- PUTUpdate Affiliate
- PUTUpdate Lead
- PUTUpdate Purchase
Related apps
More Marketing apps on the Universal API, behind the same REST shape. Or browse all apps.