Retrieve detailed information about a specific contact
Retrieve detailed information about a specific contact by ID.
This endpoint requires an API key with the can_read_contacts
permission.
Parameter | Type | Required | Description |
---|---|---|---|
contact_id | integer | Yes | The ID of the contact to retrieve |
Status Code | Error Code | Description |
---|---|---|
401 | authentication_required | No API key was provided |
401 | invalid_key | The API key is invalid or inactive |
403 | permission_denied | The API key doesn’t have the required permission |
404 | not_found | Contact not found or you do not have access |
500 | server_error | An unexpected server error occurred |
The response includes comprehensive information about the contact, including personal details, communication history, custom context data, and ownership information as shown in the response schema above.
Property | Type | Description |
---|---|---|
id | integer | The database ID of the contact |
first_name | string | First name of the contact |
last_name | string | Last name of the contact |
full_name | string | Combined first and last name |
email | string | Email address of the contact |
company | string | Company or organization name |
website | string | Company or personal website URL |
stage | string | Current stage in the sales/contact pipeline |
stage_display | string | Human-readable stage name |
status | string | Current status of the contact |
status_display | string | Human-readable status name |
address | object | Physical address information |
timezone | string | Contact’s timezone (IANA format) |
created_date | string | ISO 8601 date when the contact was created |
last_call_date | string | ISO 8601 date of the most recent call |
phone_numbers | array | List of phone numbers associated with the contact |
tags | array | Array of tag names associated with the contact |
recent_notes | array | List of recent notes about the contact |
custom_context | object | Custom fields and data specific to this contact |
industry_context | object | Industry-specific information |
team | object | Team information if the contact belongs to a team |
owner | object | User information for the contact owner |
This endpoint will only return contacts that the authenticated user has access to, either through direct ownership or team access permissions.