search_user
Find users on the Carbon Voice server by entering their phone number, email address, ID, or name. When using a name, results are limited to users in your contacts list.
Instructions
Search for a User by their phone number, email address, id or name. (In order to search for a User, you must provide a phone number, email address, id or name.)When searching by name, only users that are part of your contacts will be returned
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Email Address | ||
name | No | The name of the user to search for (Only users that are part of your contacts will be returned) | |
phone | No | Phone Number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Email Address",
"type": "string"
},
"name": {
"description": "The name of the user to search for (Only users that are part of your contacts will be returned)",
"type": "string"
},
"phone": {
"description": "Phone Number",
"type": "string"
}
},
"type": "object"
}