What can you do with it?
The Freshsales integration provides comprehensive customer relationship management and sales automation capabilities. You can create, retrieve, update, and delete various record types including leads, contacts, accounts, and deals. The integration also supports advanced search functionality with filtering and sorting, making it easy to manage your entire sales pipeline and customer data from initial lead capture through deal closure.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation you want to perform (create, get, update, delete, search)record_type
- The type of record (leads, contacts, accounts, deals, or custom modules)
fields
- Specific fields to include in the operationfilters
- Search criteria for filtering records
Tools
Create Record
Create a new record in Freshsales Parameters:record_type
(required) - Type of record to create (leads, contacts, accounts, deals)first_name
(required for leads/contacts) - First namelast_name
(required for leads/contacts) - Last nameemail
(optional) - Email addressphone
(optional) - Phone numberaddress
(optional) - Physical addressname
(required for accounts) - Account/company namewebsite
(optional for accounts) - Company websitecustom_fields
(optional) - Any custom field values
Get Record by ID
Retrieve a specific record using its unique ID Parameters:record_type
(required) - Type of record to retrieveid
(required) - The unique ID of the record
Update Record
Update an existing record in Freshsales Parameters:record_type
(required) - Type of record to updateid
(required) - The unique ID of the recordfields
(required) - Object containing fields to update
Delete Record
Delete a specific record from Freshsales Parameters:record_type
(required) - Type of record to deleteid
(required) - The unique ID of the record
Search Records
Search for records based on query parameters Parameters:record_type
(required) - Type of records to searchattribute
(required) - Field to search onoperator
(required) - Search operator (is, is_not, contains, etc.)value
(required) - Value to search forsort_by
(optional) - Attribute to sort bysort_order
(optional) - Sort order (asc or desc)page
(optional) - Page number for pagination (default: 1)per_page
(optional) - Records per page (default: 10)