This API is used to create a new Lead in the system by providing personal/contact information and other relevant details.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Example Request
{
"phone_nos": [
{
"is_priority": 1,
"type": "Mobile",
"phone": "1110000244"
}
],
"first_name": "Sridhar",
"last_name": "Gupta",
"middle_name": "Y",
"suffix": "Sr.",
"email_id": "[email protected]",
"website": "www.www.www",
"date_of_birth": "1985-12-19"
}
Response Explanation
Returns a JSON object with details of the created lead.
Response Body Parameters
-
name (
string)
Unique identifier for the newly created lead (e.g.,"2026-LEAD-01-0000002"). -
first_name (
string)
Lead's first name. -
last_name (
string)
Lead's last name. -
middle_name (
string)
Lead's middle name. -
suffix (
string)
Suffix for the lead’s name. -
email_id (
string)
Lead's email address. -
website (
string)
Website associated with the lead, if provided. -
date_of_birth (
string)
Lead's date of birth inYYYY-MM-DDformat. -
phone_nos (
array)
List of phone number objects for the lead:- is_priority (
number) — Priority indicator. - type (
string) — Type of phone. - phone (
string) — Phone number.
- is_priority (
-
owner (
string)
Email address of the user who created the lead. -
creation (
string)
Date/time when the lead was created (timestamp). -
modified (
string)
Date/time when the lead was last modified (timestamp).
Example Response
{
"name": "2026-LEAD-01-0000002",
"first_name": "Sridhar",
"last_name": "Gupta",
"middle_name": "Y",
"suffix": "Sr.",
"email_id": "[email protected]",
"website": "www.www.www",
"date_of_birth": "1985-12-19",
"phone_nos": [
{
"is_priority": 1,
"type": "Mobile",
"phone": "1110000244"
}
],
"owner": "[email protected]",
"creation": "2026-01-22 10:30:00.000000",
"modified": "2026-01-22 10:30:00.000000"
}
