create-upnify-prospect
Add new prospects to Upnify CRM by inputting their name, email, and other details, facilitating streamlined CRM management within weather-integrated workflows.
Instructions
Create a new prospect in Upnify CRM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apellidos | No | Last name of the prospect | |
calle | No | Street address | |
ciudad | No | City | |
codigoPostal | No | Postal code | |
colonia | No | Neighborhood/Colony | |
comentarios | No | Additional comments about the prospect | |
correo | Yes | Email address of the prospect | |
empresa | No | Company name | |
idPais | No | Country code (e.g., MX, US) | MX |
movil | No | Mobile phone number | |
nombre | Yes | First name of the prospect | |
puesto | No | Job position | |
sexo | No | Gender (H for male, M for female) | |
telefono | No | Phone number |
Input Schema (JSON Schema)
{
"properties": {
"apellidos": {
"description": "Last name of the prospect",
"type": "string"
},
"calle": {
"description": "Street address",
"type": "string"
},
"ciudad": {
"description": "City",
"type": "string"
},
"codigoPostal": {
"description": "Postal code",
"type": "string"
},
"colonia": {
"description": "Neighborhood/Colony",
"type": "string"
},
"comentarios": {
"description": "Additional comments about the prospect",
"type": "string"
},
"correo": {
"description": "Email address of the prospect",
"type": "string"
},
"empresa": {
"description": "Company name",
"type": "string"
},
"idPais": {
"default": "MX",
"description": "Country code (e.g., MX, US)",
"type": "string"
},
"movil": {
"description": "Mobile phone number",
"type": "string"
},
"nombre": {
"description": "First name of the prospect",
"type": "string"
},
"puesto": {
"description": "Job position",
"type": "string"
},
"sexo": {
"description": "Gender (H for male, M for female)",
"enum": [
"H",
"M"
],
"type": "string"
},
"telefono": {
"description": "Phone number",
"type": "string"
}
},
"required": [
"nombre",
"correo"
],
"type": "object"
}