add_lead
Add new leads to your sales pipeline by capturing company details, contact information, industry data, and estimated project value for revenue tracking and management.
Instructions
Add a new lead to the pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyName | Yes | Company name | |
contactEmail | No | Contact email | |
contactName | No | Contact person name | |
contactPhone | No | Contact phone | |
estimatedValue | No | Estimated project value | |
industry | No | Industry/sector | |
notes | No | Additional notes | |
servicesInterestedIn | No | Services interested in | |
source | No | Lead source |
Input Schema (JSON Schema)
{
"properties": {
"companyName": {
"description": "Company name",
"type": "string"
},
"contactEmail": {
"description": "Contact email",
"type": "string"
},
"contactName": {
"description": "Contact person name",
"type": "string"
},
"contactPhone": {
"description": "Contact phone",
"type": "string"
},
"estimatedValue": {
"description": "Estimated project value",
"type": "number"
},
"industry": {
"description": "Industry/sector",
"type": "string"
},
"notes": {
"description": "Additional notes",
"type": "string"
},
"servicesInterestedIn": {
"description": "Services interested in",
"type": "string"
},
"source": {
"description": "Lead source",
"enum": [
"Upwork",
"LinkedIn",
"Cold Email",
"Referral",
"Website",
"Other"
],
"type": "string"
}
},
"required": [
"companyName"
],
"type": "object"
}