search-upnify-contacts
Find prospects and clients in Upnify CRM using a name, email, or phone number. Specify search terms and set the number of records to retrieve.
Instructions
Search for contacts (prospects and clients) in Upnify by name, email, or phone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buscar | Yes | Search term: name, email, or phone number | |
cantidadRegistros | No | Number of records to return |
Input Schema (JSON Schema)
{
"properties": {
"buscar": {
"description": "Search term: name, email, or phone number",
"type": "string"
},
"cantidadRegistros": {
"default": 10,
"description": "Number of records to return",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"required": [
"buscar"
],
"type": "object"
}