<aside> 🚨 OneLink user’s need to provide an API key to their vendor
**To Generate Key**:
Go to the “Utilities” Tab Click on “Company Set Up” Click on “Integration” Click the ‘’+” icon next to “API Keys” Name the Key and click “Generate Key” (This is the key you need to provide the vendor) Click “Update” to save
</aside>
application/json
{
"lead": {
"Lead_Type_ID": 1,
"Source": "website",
"First_Name": Intruity,
"Last_Name": Corporation
}
}
| Name | Description | Type |
|---|---|---|
| Lead_Type_ID | Lead Type ID from OneLink | Integer |
| Source | Source from OneLink, capitalization and spacing must be exact | String (Up to 150 Characters) |
| First_Name | Lead First Name | Intruity |
| Last_Name | Lead Last Name | Corporation |
The following is required when assigning leads to an individual employee
{
"lead": {
"Lead_Type_ID": 1,
"Source": "website",
"First_Name": "Intruity",
"Last_Name": "Corporation",
"Employee_ID": 552
}
}
| Name | Description | Type |
|---|---|---|
| Employee_ID | The Associate ID number from OneLink if wanting these leads assigned to a specific associate | Integer |
The following is required when assigning leads to an individual manager
{
"lead": {
"Lead_Type_ID": 1,
"Source": "website",
"First_Name": "Intruity",
"Last_Name": "Corporation",
"Manager_ID": 200
}
}