update_account
Modify existing account details in Apollo.io by updating specific fields like name, domain, or phone number while preserving unchanged information.
Instructions
Update an existing account in Apollo.io.
This tool updates account information with the provided data. Only specified fields will be updated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
domain | No | ||
name | No | ||
phone_number | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"phone_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone Number"
}
},
"required": [
"account_id"
],
"type": "object"
}