LeadDyno API
This section allows users to track web traffic and effectively manage their affiliate program. By utilizing this API, users can gain valuable insights into their website traffic and enhance their affiliate marketing strategies.
Just getting started?
Check out our guide
Base URL
Production:
https://api.leaddyno.com/v1/
Affiliates
This section allows users to manage and track affiliate relationships within their program. By utilizing this section, users can view, add, update, and remove affiliates, as well as access performance metrics and commission details. This section provides essential functionality for effectively managing affiliate partnerships and tracking the success of their referral activities.
Purchases
The Purchases section of the LeadDyno REST API allows users to retrieve detailed information about purchases made through the platform. With this functionality, users can track and manage customer transactions, gain insights into purchase patterns, and analyze sales data for informed decision-making.
Commissions
This section allows users to retrieve detailed information about the commissions earned through their affiliate marketing program. With this functionality, users can track and manage the financial aspects of their affiliate relationships, providing insight into earnings and performance metrics.
Leads
This section allows users to manage information related to potential leads or customers. Users can retrieve details about leads, update lead information, and track the status of leads within their LeadDyno account. This functionality provides essential tools for businesses looking to effectively manage and nurture their leads.
What made this section unhelpful for you?
Create a lead
Creates a new Lead in your LeadDyno account.
Query Parameters
Your private key
Body Parameters
The email address of the lead.
The tracking code assigned to the lead. If not provided, a unique code will be generated automatically.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"id": 2151,
"email": "test2024@example.com",
"created_at": "2024-09-25T20:05:13Z",
"updated_at": "2024-09-25T20:05:13Z",
"status": "Registered",
"custom_status": null,
"first_name": null,
"last_name": null,
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipcode": null,
"country": null,
"latest_visitor": {
"id": 8289,
"tracking_code": "e4b7aa6a-74b8-4be0-9a20-abcdefghijkl"
},
"url": null,
"referrer": null,
"search_term": null,
"affiliate": null,
"campaign": null,
"tracking_code": "e4b7aa6a-74b8-4be0-9a20-abcdefghijkl",
"crm_data": {}
}
What made this section unhelpful for you?
Retrieve a lead by ID
Fetches a lead by their unique ID.
Query Parameters
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"id": 2150,
"email": "lead-2024@example.com",
"created_at": "2024-09-24T03:01:12Z",
"updated_at": "2024-09-24T03:01:12Z",
"status": "Registered",
"custom_status": "",
"first_name": "Firstname",
"last_name": "Lastname",
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipcode": null,
"country": null,
"latest_visitor": null,
"url": null,
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17171,
"email": "affiliate@example.com"
},
"campaign": null,
"tracking_code": null
}
What made this section unhelpful for you?
Retrieve a lead by email
Fetches a lead using their email address.
Query Parameters
Your private key
The email address of the lead to retrieve.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"id": 2150,
"email": "lead-2024@example.com",
"created_at": "2024-09-24T03:01:12Z",
"updated_at": "2024-09-24T03:01:12Z",
"status": "Registered",
"custom_status": "",
"first_name": "Firstname",
"last_name": "Lastname",
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipcode": null,
"country": null,
"latest_visitor": null,
"url": null,
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17171,
"email": "affiliate@example.com"
},
"campaign": null,
"tracking_code": null,
"crm_data": {}
}
What made this section unhelpful for you?
Retrieve total lead count
Retrieves the total number of leads captured within the LeadDyno platform.
Query Parameters
Your private key
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"count": 737
}
What made this section unhelpful for you?
Retrieve purchases for a lead
Retrieve a paginated list of purchases linked to a specific lead. Users can opt to include detailed information about the line items (SKUs) for each purchase. Each page contains up to 100 records.
Query Parameters
Your private key
The page number for pagination. Defaults to 1, with 100 records per page.
If set to true, detailed information about the line items (SKUs) for the purchase is included. Default value is false.
Response
Response Attributes
Show child attributes
Show child attributes
Show child attributes
What made this section unhelpful for you?
Response
[
{
"id": 903,
"created_at": "2024-08-27T12:36:01Z",
"updated_at": "2024-09-06T17:19:27Z",
"cancelled": false,
"currency": "USD",
"purchase_code": "9123467012302978503",
"note": null,
"purchase_amount": "403.4",
"commission_amount_override": null,
"cancellation": null,
"lead": {
"id": 1587,
"email": "lead@example.com"
},
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"plan": {
"id": 30,
"code": "default"
}
},
{
"id": 902,
"created_at": "2024-08-27T03:14:10Z",
"updated_at": "2024-09-06T17:15:07Z",
"cancelled": false,
"currency": "USD",
"purchase_code": "76267123491450542",
"note": null,
"purchase_amount": "470.16",
"commission_amount_override": null,
"cancellation": null,
"lead": {
"id": 1587,
"email": "lead@example.com"
},
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"plan": {
"id": 30,
"code": "default"
}
}
]
What made this section unhelpful for you?
List all leads
Returns a paginated list of all leads. Leads are returned in descending order by creation date, with the most recent leads appearing first. Use the page parameter to navigate through the results. Each page contains up to 100 records.
Query Parameters
Your private key
The page number to retrieve leads for pagination. Defaults to 1, with 100 records displayed per page.
Response
Response Attributes
The unique identifier of the lead to retrieve.
The email address of the lead.
The date and time when the lead was created.
The date and time when the lead was last updated.
The status of the lead.
The custom status of the lead.
The first name of the lead.
The last name of the lead.
The address line 1 of the lead.
The address line 2 of the lead.
The city of the lead.
The state of the lead.
The zip code of the lead.
The country of the lead.
The latest visitor related to the lead.
The URL related to the lead.
The referrer of the lead.
The search term associated with the lead.
The affiliate associated with the lead.
Show child attributes
The campaign associated with the lead.
The tracking code related to the lead.
The CRM data associated with the lead.
The last referral date of the lead.
What made this section unhelpful for you?
Response
[
{
"id": 2150,
"email": "lead-2024@example.com",
"created_at": "2024-09-24T03:01:12Z",
"updated_at": "2024-09-24T03:01:12Z",
"status": "Registered",
"custom_status": "",
"first_name": "Firstname",
"last_name": "Lastname",
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipcode": null,
"country": null,
"latest_visitor": null,
"url": null,
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17171,
"email": "affiliate@example.com"
},
"campaign": null,
"tracking_code": null,
"crm_data": {}
},
"2022-05-19T18:01:24Z"
]
What made this section unhelpful for you?
Update a lead
Updates the details of an existing lead. You can modify the lead’s email, first name, last name, and other relevant information using this endpoint.
Query Parameters
Your private key
Body Parameters
The email address of the lead.
The first name of the lead.
The last name of the lead.
The custom status for the lead.
The email address of the affiliate to associate with the lead.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"id": 2151,
"email": "test2024@example.com",
"created_at": "2024-09-25T20:05:13Z",
"updated_at": "2024-09-25T20:05:13Z",
"status": "Registered",
"custom_status": "party_rockin",
"first_name": "John",
"last_name": "Example",
"address1": null,
"address2": null,
"city": null,
"state": null,
"zipcode": null,
"country": null,
"latest_visitor": {
"id": 8289,
"tracking_code": "e4b7aa6a-74b8-4be0-9a20-abcdefghijkl"
},
"url": null,
"referrer": null,
"search_term": null,
"affiliate": null,
"campaign": null,
"tracking_code": "e4b7aa6a-74b8-4be0-9a20-abcdefghijkl",
"crm_data": {}
}
What made this section unhelpful for you?
Cancel all purchases for a lead
Cancel all purchases associated with the given lead.
Query Parameters
Your private key
A user-defined string indicating the origin or reason for the cancellation.
The effective date of the cancellation. Defaults to the current date and time if not provided.
A custom cancellation code. If not provided, a system-generated code will be assigned.
Response
Response Attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
What made this section unhelpful for you?
Response
[
{
"id": 1104,
"created_at": "2024-10-07T03:00:00Z",
"updated_at": "2024-10-16T16:52:51Z",
"cancelled": true,
"currency": "USD",
"purchase_code": "0b01832c-cd02-4120-a698-1c2cd752f123",
"note": null,
"purchase_amount": "123.5",
"commission_amount_override": null,
"cancellation": {
"id": 29,
"cancellation_code": "eee9b192-f42a-4063-8423-1a0dca56b123",
"effective_date": "2024-10-16T16:52:51Z",
"source": null
},
"lead": {
"id": 2152,
"email": "lead@email.com"
},
"affiliate": {
"id": 17175,
"email": "affiliate@email.com"
},
"plan": {
"id": 30,
"code": "default"
}
}
]
What made this section unhelpful for you?
Visitors
This section allows users to manage and retrieve data related to website visitors, whether they were referred by affiliates or arrived organically. You can use these endpoints to track the journey and behavior of visitors across your website, helping to analyze performance and conversions.
Campaigns
This section allows users to manage and track their marketing campaigns efficiently. With this functionality, users can create, monitor, and analyze the performance of their campaigns to optimize their marketing efforts and drive better results.
Custom Fields
The Custom Fields section allows users to define and manage custom fields within the LeadDyno. By utilizing this section, users can customize their data structures and collect specific information tailored to their business needs. This section empowers users to enhance the flexibility and functionality of their LeadDyno integration.
Sub IDs
This section allows users to retrieve detailed information about the affiliate links, Sub IDS.