Create Lead

This API is used to create a new Lead in the system by providing personal/contact information and other relevant details.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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 in YYYY-MM-DD format.

  • 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.
  • 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"
}
Body Params
phone_nos
array of objects
required
phone_nos*
string
required
Defaults to Sridhar
string
required
Defaults to Gupta
string
required
Defaults to Y
string
required
Defaults to Sr.
string
required
Defaults to [email protected]
string
required
Defaults to www.www.www
string
required
Defaults to 1985-12-19
Headers
string
required
Defaults to <Token>
Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json