create_account
Create a new Apollo.io account by providing name, domain, phone number, and address details. The tool automatically parses domain and address information to enrich account data for sales and marketing workflows.
Instructions
Create a new account in Apollo.io.
This tool creates a new account with the provided information. The domain and address will be intelligently parsed for additional data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | ||
name | Yes | ||
phone_number | No | ||
raw_address | No |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"name": {
"title": "Name",
"type": "string"
},
"phone_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone Number"
},
"raw_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Raw Address"
}
},
"required": [
"name"
],
"type": "object"
}