Represents a lead
Model ID | Event Data Key | Description |
---|---|---|
crm_lead_info | info | |
crm_lead_addresses | addresses | |
crm_lead_phones | phones | |
crm_lead_emails | emails | |
crm_lead_conversion | conversion |
Lead Info
Model ID: crm_lead_info
Name | Type | Description |
---|---|---|
id | String | |
firstName | String | |
lastName | String | |
company | String | |
description | String | |
industry | String | |
jobTitle | String | |
owner | User | Please refer to https://developers.getknit.dev/reference/base-models#user |
createdBy | User | Please refer to https://developers.getknit.dev/reference/base-models#user |
annualRevenue | String | |
numberOfEmployees | Double | |
status | String | |
website | String | |
updatedAt | Date | |
createdAt | Date | |
lastActivityAt | Date |
Lead Addresses
Model ID: crm_lead_addresses
Name | Type | Description |
---|---|---|
addresses | List[Address] | Please refer to https://developers.getknit.dev/reference/base-models#address |
Lead Phones
Model ID: crm_lead_phones
Name | Type | Description |
---|---|---|
phones | List[Phone] | Please refer to https://developers.getknit.dev/reference/base-models#phone |
Lead Emails
Model ID: crm_lead_emails
Name | Type | Description |
---|---|---|
emails | List[Email] | Please refer to https://developers.getknit.dev/reference/base-models#email |
Lead Conversion
Model ID: crm_lead_conversion
Name | Type | Description |
---|---|---|
convertedAt | Date | |
convertedAccountId | String | |
convertedContactId | String | |
convertedDealId | String |
Event Data Example
{
"info": {
"id": "35114635700",
"firstName": "David",
"lastName": "Matson",
"company": "GoJo",
"description": "Upcoming new media company",
"industry": "Media",
"jobTitle": "CEO",
"owner": {
"id": "407425865",
"email": "[email protected]"
},
"createdBy": {
"id": "407425865",
"email": "[email protected]"
},
"annualRevenue": "1000000",
"numberOfEmployees": 200.0,
"status": "New",
"website": "gojo.com",
"updatedAt": "2023-05-23T12:04:28Z",
"createdAt": "2023-05-23T12:04:28Z",
"lastActivityAt": "2023-05-23T12:04:28Z"
},
"addresses": [
{
"addressLine1": "125, 32nd Street",
"addressLine2": "9th Avenue",
"city": "New York City",
"state": "New York",
"country": "United States of America",
"zipCode": "54AZ",
"addressType": "NOT_SPECIFIED"
}
],
"phones": [
{
"type": "NOT_SPECIFIED",
"phoneNumber": "45684332463"
}
],
"emails": [
{
"type": "NOT_SPECIFIED",
"email": "[email protected]"
}
],
"conversion": {
"convertedAt": "2023-05-23T12:04:28Z",
"convertedAccountId": "152996285",
"convertedContactId": "418941",
"convertedDealId": "8459821"
}
}