Core Resources
Partners
Manage the partner network: registration, referral codes, hierarchy (upline/downline), partner tiers, and portal authentication.
Partner hierarchy
Upline/downline genealogy
Referral codes
Generate and validate referral codes
Partner portal
White-labeled partner login
Create Partner
Body Parameters
| Parameter | Type | Description |
|---|---|---|
emailreq | string | Partner email address |
firstNamereq | string | First name |
lastNamereq | string | Last name |
phone | string | Phone number |
company | string | Company name |
tier | stringbronzesilvergoldplatinum | Partner tier |
Request
HTTP
http
POST https://api.leadron.io/v1/partners
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0
Content-Type: application/jsonBody
json
1
2
3
4
5
6
7
{
"email": "partner@example.com",
"firstName": "Alex",
"lastName": "Rivera",
"company": "Partner Corp",
"tier": "gold"
}Response201Created
201 Response
json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"success": true,
"status": 201,
"message": "Resource created successfully",
"data": {
"id": "partner_xyz789",
"email": "partner@example.com",
"firstName": "Alex",
"lastName": "Rivera",
"tier": "gold",
"status": "pending",
"createdAt": "2026-02-08T14:30:00.000Z"
},
"meta": {
"timestamp": "2026-02-08T14:30:00.000Z",
"version": "v1"
}
}