Campaigns

Sections

Theme switcher

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/

Language Box

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.

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.

Was this section helpful?

What made this section unhelpful for you?

Retrieve Campaign Leads

This section allows users to retrieve the leads associated with a specific campaign.

Query Parameters

keystring Required

Your private key

pageinteger (int32)

The page number for pagination. Defaults to 1, with 100 records per page.

Response

200
Object

Response Attributes

address1string
address2string
affiliateobject

Show child attributes

campaignstring

Show child attributes

citystring
countrystring
created_atstring
crm_dataobject
custom_statusstring
emailstring
first_namestring
idnumber
last_namestring
latest_visitorstring

Show child attributes

referrerstring

Show child attributes

search_termstring

Show child attributes

statestring
statusstring
tracking_codestring
updated_atstring
urlstring

Show child attributes

zipcodestring
Was this section helpful?

What made this section unhelpful for you?

GET

/campaigns/ID/leads?key=YOUR_PRIVATE_KEY&page=1

Select
1 curl --location 'https://api.leaddyno.com/v1/campaigns/ID/leads?key=YOUR_PRIVATE_KEY&page=1' \

Response

[
  {
    "address1": "123 Main St",
    "address2": "Apt 4B",
    "affiliate": {
      "email": "affiliate1@example.com",
      "id": 101
    },
    "campaign": {
      "id": 301,
      "code": "CAM123"
    },
    "city": "New York",
    "country": "USA",
    "created_at": "2022-05-19T18:01:24Z",
    "crm_data": {},
    "custom_status": null,
    "email": "lead2@example.com",
    "first_name": "John",
    "id": 202,
    "last_name": "Doe",
    "latest_visitor": {
      "id": 401,
      "tracking_code": "TRACK123"
    },
    "referrer": {
      "id": 501,
      "url": "https://referrer.example.com"
    },
    "search_term": {
      "id": 601,
      "search_engine": "Google",
      "term": "best software tools"
    },
    "state": "NY",
    "status": "Registered",
    "tracking_code": null,
    "updated_at": "2022-05-19T18:01:24Z",
    "url": {
      "id": 701,
      "url": "https://example.com"
    },
    "zipcode": "10001"
  },
  {
    "address1": "456 Elm St",
    "address2": null,
    "affiliate": {
      "email": "affiliate1@example.com",
      "id": 101
    },
    "campaign": {
      "id": 301,
      "code": "CAM123"
    },
    "city": "Los Angeles",
    "country": "USA",
    "created_at": "2022-05-19T18:01:24Z",
    "crm_data": {},
    "custom_status": null,
    "email": "lead1@example.com",
    "first_name": "Jane",
    "id": 201,
    "last_name": "Smith",
    "latest_visitor": {
      "id": 401,
      "tracking_code": "TRACK123"
    },
    "referrer": {
      "id": 501,
      "url": "https://referrer.example.com"
    },
    "search_term": {
      "id": 601,
      "search_engine": "Google",
      "term": "best software tools"
    },
    "state": "CA",
    "status": "Registered",
    "tracking_code": "TRACK123",
    "updated_at": "2022-05-19T18:01:24Z",
    "url": {
      "id": 701,
      "url": "https://example.com"
    },
    "zipcode": "90001"
  }
]
Was this section helpful?

What made this section unhelpful for you?

Retrieve Campaign by ID

Retrieve detailed information about a specific campaign using its unique ID.

Query Parameters

keystring Required

Your private key

Response

200
Object
Returns the campaign with the given ID.

Response Attributes

idnumber
created_atstring
updated_atstring
codestring
Was this section helpful?

What made this section unhelpful for you?

GET

/campaigns/ID?key=YOUR_PRIVATE_KEY

Select
1 curl --location 'https://api.leaddyno.com/v1/campaigns/ID?key=YOUR_PRIVATE_KEY' \

Response

{
  "id": 21,
  "created_at": "2024-10-07T18:49:41Z",
  "updated_at": "2024-10-16T18:15:20Z",
  "code": "Black Friday"
}
Was this section helpful?

What made this section unhelpful for you?

Retrieve total campaign count

Retrieve the total number of campaigns associated with an account.

Query Parameters

keystring Required

Response

200
Object
Returns the total number of campaigns.

Response Attributes

countnumber
Was this section helpful?

What made this section unhelpful for you?

GET

/campaigns/count?key=YOUR_PRIVATE_KEY

Select
1 curl --location 'https://api.leaddyno.com/v1/campaigns/count?key=YOUR_PRIVATE_KEY' \

Response

{
  "count": 3
}
Was this section helpful?

What made this section unhelpful for you?

List all campaigns

This endpoint allows users to retrieve a paginated list of campaigns.

Query Parameters

keystring Required

Your private key

pageinteger (int32)

The page number for pagination. Default value is 1, with 100 records displayed per page.

Response

200
Object
Returns a paginated list of campaigns.

Response Attributes

idnumber
created_atstring
updated_atstring
codestring
Was this section helpful?

What made this section unhelpful for you?

GET

/campaigns?key=YOUR_PRIVATE_KEY&page=1

Select
1 curl --location 'https://api.leaddyno.com/v1/campaigns?key=YOUR_PRIVATE_KEY&page=1' \

Response

[
  {
    "id": 22,
    "created_at": "2024-10-16T18:16:54Z",
    "updated_at": "2024-10-16T18:16:54Z",
    "code": "New Year Sale"
  },
  {
    "id": 21,
    "created_at": "2024-10-07T18:49:41Z",
    "updated_at": "2024-10-16T18:15:20Z",
    "code": "Black Friday"
  }
]
Was this section helpful?

What made this section unhelpful for you?

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.