update_contact
Modify existing Google Contacts by updating first name, last name, email, or phone number using the contact's resource name. Streamlines contact management within Google accounts.
Instructions
Update an existing contact.
Args:
resource_name: Contact resource name (people/*)
given_name: Updated first name
family_name: Updated last name
email: Updated email address
phone: Updated phone number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
family_name | No | ||
given_name | No | ||
phone | No | ||
resource_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Email"
},
"family_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Family Name"
},
"given_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Given Name"
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Phone"
},
"resource_name": {
"title": "Resource Name",
"type": "string"
}
},
"required": [
"resource_name"
],
"title": "update_contactArguments",
"type": "object"
}