Manage customer relationships and sales with Close CRM
The Close CRM integration enables you to manage your complete sales workflow including leads, contacts, opportunities, and activities. You can create new records with contact information, update existing data, search across all record types using both simple queries and advanced JSON filters, and manage custom fields. This integration is ideal for sales teams focused on relationship building and deal tracking with comprehensive contact management capabilities.
Required:
action
- The operation you want to perform (create, update, get, search, delete)record_type
- The type of record (lead, contact, opportunity, activity)Optional:
query
- Search query for finding recordscustom_fields
- Custom field values specific to your Close CRM setupCreate a new record in Close CRM
Parameters:
record_type
(required) - Type of record to create (lead, contact, opportunity, activity)name
(required) - Name of the recordcontact_name
(optional) - Name of associated contactemails
(optional) - Array of email addressesphones
(optional) - Array of phone numberscustom_fields
(optional) - Custom field valuesExample:
Response:
Update an existing record in Close CRM
Parameters:
record_type
(required) - Type of record to updateid
(required) - The unique ID of the recordname
(optional) - Updated namephones
(optional) - Updated phone numbersemails
(optional) - Updated email addressescustom_fields
(optional) - Updated custom field valuesExample:
Response:
Retrieve a specific record using its unique ID
Parameters:
record_type
(required) - Type of record to retrieveid
(required) - The unique ID of the recordExample:
Response:
Search for records using a simple query
Parameters:
record_type
(required) - Type of records to searchquery
(required) - Search query stringExample:
Response:
Delete a specific record from Close CRM
Parameters:
record_type
(required) - Type of record to deleteid
(required) - The unique ID of the recordExample:
Response:
Search for records using advanced JSON filters
Parameters:
record_type
(required) - Type of records to searchfilter_field
(required) - Field to filter onfilter_value
(required) - Value to search forExample:
Response:
Close CRM uses string-based IDs with prefixes like “lead_”, “contact_”, “opportunity_”, etc. Contact information is stored as arrays - emails and phones can have multiple entries per record. Custom fields use the format “cf_custom_field_id” and values are specific to your Close CRM configuration. Advanced search supports nested field queries like “emails.email” for searching within contact email arrays. Record creation for leads can include embedded contact information in a single request.