itglue_update_contact
Modify contact details in IT Glue by updating fields like name, title, emails, phones, and notes for existing contacts.
Instructions
Update an existing contact in IT Glue.
Args:
id (string|number): Contact ID (required)
first_name (string): First name
last_name (string): Last name
title (string|null): Job title
contact_type_id (number): Contact type ID
location_id (number|null): Location ID
important (boolean): Important flag
notes (string|null): Notes
contact_emails (array): Email addresses (replaces existing)
contact_phones (array): Phone numbers (replaces existing)
response_format (string): 'markdown' or 'json'
Returns: The updated contact.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The unique ID of the resource | |
| organization_id | No | Organization ID | |
| first_name | No | First name | |
| last_name | No | Last name | |
| title | No | Job title | |
| contact_type_id | No | Contact type ID | |
| location_id | No | Location ID | |
| important | No | Mark as important contact | |
| notes | No | Notes | |
| contact_emails | No | Contact email addresses (replaces existing) | |
| contact_phones | No | Contact phone numbers (replaces existing) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |