Web To Lead

This guide explains how to set up WebToLead process and create leads in AIRR directly from your website/landing page.

Post Lead

POST https://api.theairr.com/lead

This endpoint allows you to create new lead.

Headers

NameTypeDescription

X-API-KEY

string

API Key for a particular organisation

Request Body

NameTypeDescription

company.fundId

string

ID of the investment vehicle for which the lead is relevant

persons.firstName

string

First name of the submitting person

persons.lastName

string

Last name of the submitting person

company.email

string

Contact email

company.name

string

Name of the company

company.description

string

Description of the company

company.website

string

Website of the company

company.amount

string

Investment amount requested

{
    "persons": [
        {
            "persons.id": "f5d940c9-7444-4f55-9480-4b2b5ee82ba7",
            "persons.firstName": "John",
            "persons.lastName": "Doe",
            "persons.rank": null,
            "persons.jobType": null,
            "persons.title": null
        }
    ],
    "investors": null,
    "fundingRounds": null,
    "teamMemberId": "6febe66c-4e87-4a07-84bc-07b25223a4fa",
    "teamMemberName": "Natallia Chykina",
    "fileId": null,
    "downloadLink": null,
    "company.id": "81995a5d-ba15-4345-ab08-f498c98cf7d2",
    "company.leadSource": "WebToLead",
    "company.statusId": "e11c3bf7-2d16-4261-8765-fc5607dc5b93",
    "company.localizedStatusNames": [
        {
            "lang": "ru",
            "value": "New 2"
        },
        {
            "lang": "en",
            "value": "New 2"
        }
    ],
    "company.statusType": "Active",
    "company.description": "some text here",
    "company.fundingRoundsTotalSumUSD": null,
    "company.name": "ABC",
    "company.categories": null,
    "company.industryIds": null,
    "company.localizedIndustryNames": null,
    "company.email": "anc@gmail.com",
    "company.homepageUrl": null,
    "company.fundId": "8bb708be-0adc-4c6d-8d5b-e4c3c4e95858",
    "company.extIdCrunchbase": null,
    "company.extIdSalesforce": null,
    "company.extIdParsers": null,
    "company.opportunityId": null
}

Last updated