List Sub IDs for an Affiliate

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.

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.

Was this section helpful?

What made this section unhelpful for you?

Create a Sub ID

This section allows users to create a unique Sub ID for an affiliate, enabling them to track and analyze performance metrics associated with specific URLs and channels. By utilizing this functionality, users can efficiently manage and optimize their affiliate marketing strategies within the LeadDyno REST API.

Query Parameters

keystring Required

Your private key

Body Parameters

urlstring Required

The url parameter indicates the URL associated with the Sub ID.

channel_namestring Required

The channel_name parameter specifies the name of the channel for the Sub ID.

Response

201
Object
Creates a Sub ID for an affiliate.

Response Attributes

idnumber
urlstring
affiliate_idnumber
namestring
archivedboolean
Was this section helpful?

What made this section unhelpful for you?

POST

/affiliates/ID/create_subid?key=YOUR_PRIVATE_KEY

Select
1 2 3 4 5 curl --location 'https://api.leaddyno.com/v1/affiliates/ID/create_subid?key=YOUR_PRIVATE_KEY' \ --data '{ "url": "http://mystore.com/t-shirt", "channel_name": "lorem ipsum" }'

Response

{
  "id": 17374,
  "url": "http://mystore.com/t-shirt",
  "affiliate_id": 17175,
  "name": "lorem ipsum",
  "archived": false
}
Was this section helpful?

What made this section unhelpful for you?

Retrieve a Sub ID for a specific affiliate

Retrieve detailed information about a specific Sub ID associated with an affiliate.

Query Parameters

keystring Required

Your private key

Response

200
Object
Gets a Sub ID by ID for an affiliate.

Response Attributes

idnumber
urlstring
affiliate_idnumber
namestring
archivedboolean
Was this section helpful?

What made this section unhelpful for you?

GET

/affiliates/ID/subids/SUB_ID?key=YOUR_PRIVATE_KEY

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

Response

{
  "id": 19,
  "url": "http://mystore.com",
  "affiliate_id": 123,
  "name": "lorem ipsum",
  "archived": false
}
Was this section helpful?

What made this section unhelpful for you?

List Sub IDs for an Affiliate

Retrieve a paginated list of Sub IDs associated with a specific affiliate.

Query Parameters

keystring Required

Your private key

ostring

The field to order the results by (e.g., 'created_at', 'visitors_total', 'leads_total', 'purchases_total', 'url', 'name').

oastring

The order direction ('asc' or 'desc').

pageinteger (int32)

The page number for pagination. Defaults to 1.

per_pageinteger (int32)

The number of records per page. Defaults to 12.

Response

200
Object
Returns a paginated list of Sub IDs for an affiliate.

Response Attributes

idnumber
urlstring
affiliate_idnumber
namestring
archivedboolean
Was this section helpful?

What made this section unhelpful for you?

GET

/affiliates/ID/subids?key=YOUR_PRIVATE_KEY&o=&oa=&page=1&per_page=

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

Response

[
  {
    "id": 17372,
    "url": "http://www.test.com/2025",
    "affiliate_id": 17175,
    "name": "Promo",
    "archived": false
  },
  {
    "id": 17373,
    "url": "http://www.test.com/2024",
    "affiliate_id": 171321,
    "name": "Sales",
    "archived": false
  }
]
Was this section helpful?

What made this section unhelpful for you?

Archive Affiliate Sub ID

This endpoint allows users to archive a specific Sub ID associated with an affiliate.

Query Parameters

keystring Required

Your private key

Response

200
Object
Deletes a Sub ID for an affiliate by archiving it.

Response Attributes

idnumber
urlstring
affiliate_idnumber
namestring
archivedboolean
Was this section helpful?

What made this section unhelpful for you?

DELETE

/affiliates/ID/subids/SUB_ID?key=YOUR_PRIVATE_KEY

Select
1 curl --location --request DELETE 'https://api.leaddyno.com/v1/affiliates/ID/subids/SUB_ID?key=YOUR_PRIVATE_KEY' \

Response

{
  "id": 17374,
  "url": "http://mystore.com/t-shirt",
  "affiliate_id": 17175,
  "name": "lorem ipsum",
  "archived": true
}
Was this section helpful?

What made this section unhelpful for you?