Components
Freshsales
Freshsales is a customer relationship management (CRM) software designed to help businesses streamline sales processes and manage customer interactions effectively.
Freshsales is a customer relationship management (CRM) software designed to help businesses streamline sales processes and manage customer interactions effectively.
Categories: CRM
Type: freshsales/v1
Connections
Version: 1
API Key
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
username | Bundle alias | STRING | Your Freshsales bundle alias (e.g. https://<alias>.myfreshworks.com) | true |
key | API Key | STRING | The API Key supplied by Freshsales | true |
Actions
Create Account
Name: createAccount
Creates a new account.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
name | Name | STRING | Name of the account. | true |
website | Website | STRING | Website of the account. | false |
phone | Phone | STRING | Phone number of the account. | false |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
sales_account | OBJECT Properties{NUMBER(id), STRING(name), STRING(website), STRING(phone)} |
Output Example
Create Contact
Name: createContact
Add new contact in Freshsales CRM.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
first_name | First Name | STRING | First name of the contact. | false |
last_name | Last Name | STRING | Last name of the contact. | false |
job_title | Job Title | STRING | Designation of the contact in the account they belong to. | false |
STRING | Primary email address of the contact. | true | ||
work_number | Work Number | STRING | Work phone number of the contact. | false |
mobile_number | Mobile Number | STRING | Mobile phone number of the contact. | false |
address | Address | STRING | Address of the contact. | false |
city | City | STRING | City that the contact belongs to. | false |
state | State | STRING | State that the contact belongs to. | false |
zipcode | Zip Code | STRING | Zipcode of the region that the contact belongs to. | false |
country | Country | STRING | Country that the contact belongs to. | false |
medium | Medium | STRING | The medium that led your contact to your website/web ap.p | false |
STRING | Facebook username of the contact. | false | ||
STRING | Twitter username of the contact. | false | ||
STRING | LinkedIn account of the contact. | false |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
contact | OBJECT Properties{NUMBER(id), STRING(first_name), STRING(last_name), STRING(job_title), STRING(city), STRING(state), STRING(zipcode), STRING(country), STRING(email), STRING(work_number), STRING(mobile_number), STRING(address), STRING(medium), STRING(facebook), STRING(twitter), STRING(linkedin)} |
Output Example
Create Lead
Name: createLead
Creates a new lead.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
first_name | First Name | STRING | First name of the lead. | false |
last_name | Last Name | STRING | Last name of the lead. | false |
STRING | Primary email address of the lead. | true |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
lead | OBJECT Properties{NUMBER(id), STRING(email), STRING(first_name), STRING(last_name)} |