create_lead
Add new leads to your CRM with contact details, company information, and custom fields to organize and track potential customers in your sales pipeline.
Instructions
Create a new lead in Multilead
Args: email: Lead email address (required) first_name: Lead first name last_name: Lead last name company: Company name title: Job title phone: Phone number tags: List of tags to assign custom_fields: Custom field key-value pairs
Returns: Created lead object with ID and metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | |||
| first_name | No | ||
| last_name | No | ||
| company | No | ||
| title | No | ||
| phone | No | ||
| tags | No | ||
| custom_fields | No |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"custom_fields": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null
},
"email": {
"type": "string"
},
"first_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"last_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"email"
],
"type": "object"
}