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

The Indixital team will provide these values during campaign setup.


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


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 --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