Publisher APIs
Overview
This API enables publishers to submit lead data (like name, email, and DOB) to Indixital's tracking infrastructure via a secure HTTP POST request. It is commonly used to integrate lead forms on websites or mobile apps.
Endpoint
POST https://l.indixital.com/lf
Full Example URL with Parameters
https://l.indixital.com/lf?c=camp_id&p=pub_id&a=adv_id
Parameter
Description
c
Campaign ID – Unique identifier for the campaign
p
Publisher ID – Identifier for the traffic source
a
Advertiser ID – Unique identifier for the advertiser
Headers
Header
Value
Content-Type
application/json
Request Body
Content Type: application/json
{
"firstName": "Anil",
"lastName": "Sharma",
"email": "[email protected]",
"dob": "1998-05-15"
}Field Descriptions
Field
Type
Required
Description
firstName
string
Yes
Lead’s first name
lastName
string
Yes
Lead’s last name
email
string
Yes
Lead’s email address
dob
string
Yes
Date of birth in YYYY-MM-DD format
These are the required fields. Along with these, some additional fields can also be passed depending on your use case (e.g., phone number, gender, custom identifiers). Please consult with the Indixital team for supported optional fields.
Success Response
{
"success": "true",
"message": "QUEUED",
"uuid":"0ins8n12819beuis018u9io"
}Response Fields
Field
Description
success
Status of the request
message
Confirmation message
uuid
Unique identifier assigned to the lead
Example curl Request
curl Requestcurl --location 'https://l.indixital.com/lf?c=camp_id&p=pub_id&a=adv_id' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "anil",
"lastName": "sharma",
"email": "[email protected]",
"dob": "1998-05-15"
}'Support
If you face issues or need help with integration, contact your Indixital account manager or email [email protected].
Last updated