productivity
Freshworks CRM CLI for AI Agents
Use the Freshworks CRM CLI from KosmoKrator to call Freshworks CRM tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Freshworks CRM CLI Setup
Freshworks CRM can be configured headlessly with `kosmokrator integrations:configure freshworks-crm`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure freshworks-crm --set api_key="$FRESHWORKS_CRM_API_KEY" --set domain="$FRESHWORKS_CRM_DOMAIN" --enable --read allow --write ask --json
kosmokrator integrations:doctor freshworks-crm --json
kosmokrator integrations:status --json Credentials
Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
api_key | FRESHWORKS_CRM_API_KEY | Secret secret | yes | API Key |
domain | FRESHWORKS_CRM_DOMAIN | Text string | yes | Domain |
base_url | FRESHWORKS_CRM_BASE_URL | URL url | no | Custom Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call freshworks-crm.freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json kosmo integrations:freshworks-crm freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs freshworks-crm --json
kosmo integrations:docs freshworks-crm.freshworks_crm_list_contacts --json
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contacts --json
kosmo integrations:search "Freshworks CRM" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
freshworks-crm.freshworks_crm_list_contacts
List contacts in Freshworks CRM. Returns paginated results with contact details including name, email, phone, and company.
read - Parameters
- page, per_page
kosmo integrations:call freshworks-crm.freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json kosmo integrations:freshworks-crm freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json freshworks-crm.freshworks_crm_get_contact
Get a single contact from Freshworks CRM by ID. Returns full contact details including custom fields.
read - Parameters
- id
kosmo integrations:call freshworks-crm.freshworks_crm_get_contact '{"id":1}' --json kosmo integrations:freshworks-crm freshworks_crm_get_contact '{"id":1}' --json freshworks-crm.freshworks_crm_create_contact
Create a new contact in Freshworks CRM. Provide at least a first name or last name. Email and mobile number are optional.
write - Parameters
- first_name, last_name, email, mobile_number
kosmo integrations:call freshworks-crm.freshworks_crm_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","mobile_number":"example_mobile_number"}' --json kosmo integrations:freshworks-crm freshworks_crm_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","mobile_number":"example_mobile_number"}' --json freshworks-crm.freshworks_crm_update_contact
Update a contact.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_contact '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_contact '{}' --json freshworks-crm.freshworks_crm_delete_contact
Delete a contact.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_contact '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_contact '{}' --json freshworks-crm.freshworks_crm_list_contact_filters
List contact filters.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_contact_filters '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_contact_filters '{}' --json freshworks-crm.freshworks_crm_get_contact_view
Fetch contacts from a view.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_contact_view '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_contact_view '{}' --json freshworks-crm.freshworks_crm_bulk_upsert_contacts
Bulk upsert contacts.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_contacts '{}' --json kosmo integrations:freshworks-crm freshworks_crm_bulk_upsert_contacts '{}' --json freshworks-crm.freshworks_crm_list_accounts
List sales accounts in Freshworks CRM. Returns paginated results with account details including name, domain, and industry.
read - Parameters
- page, per_page
kosmo integrations:call freshworks-crm.freshworks_crm_list_accounts '{"page":1,"per_page":1}' --json kosmo integrations:freshworks-crm freshworks_crm_list_accounts '{"page":1,"per_page":1}' --json freshworks-crm.freshworks_crm_get_account
Get a sales account.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_account '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_account '{}' --json freshworks-crm.freshworks_crm_create_account
Create a sales account.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_account '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_account '{}' --json freshworks-crm.freshworks_crm_update_account
Update a sales account.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_account '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_account '{}' --json freshworks-crm.freshworks_crm_delete_account
Delete a sales account.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_account '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_account '{}' --json freshworks-crm.freshworks_crm_list_account_filters
List sales account filters.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_account_filters '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_account_filters '{}' --json freshworks-crm.freshworks_crm_bulk_upsert_accounts
Bulk upsert accounts.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_accounts '{}' --json kosmo integrations:freshworks-crm freshworks_crm_bulk_upsert_accounts '{}' --json freshworks-crm.freshworks_crm_list_deals
List deals in Freshworks CRM. Returns paginated results with deal details. Optionally filter by deal stage.
read - Parameters
- page, per_page, stage
kosmo integrations:call freshworks-crm.freshworks_crm_list_deals '{"page":1,"per_page":1,"stage":1}' --json kosmo integrations:freshworks-crm freshworks_crm_list_deals '{"page":1,"per_page":1,"stage":1}' --json freshworks-crm.freshworks_crm_get_deal
Get a single deal from Freshworks CRM by ID. Returns full deal details including amount, stage, associated contacts, and custom fields.
read - Parameters
- id
kosmo integrations:call freshworks-crm.freshworks_crm_get_deal '{"id":1}' --json kosmo integrations:freshworks-crm freshworks_crm_get_deal '{"id":1}' --json freshworks-crm.freshworks_crm_create_deal
Create a deal.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_deal '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_deal '{}' --json freshworks-crm.freshworks_crm_update_deal
Update a deal.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_deal '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_deal '{}' --json freshworks-crm.freshworks_crm_delete_deal
Delete a deal.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_deal '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_deal '{}' --json freshworks-crm.freshworks_crm_list_deal_filters
List deal filters.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_deal_filters '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_deal_filters '{}' --json freshworks-crm.freshworks_crm_get_deal_view
Fetch deals from a view.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_deal_view '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_deal_view '{}' --json freshworks-crm.freshworks_crm_bulk_upsert_deals
Bulk upsert deals.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_deals '{}' --json kosmo integrations:freshworks-crm freshworks_crm_bulk_upsert_deals '{}' --json freshworks-crm.freshworks_crm_list_tasks
List tasks.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_tasks '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_tasks '{}' --json freshworks-crm.freshworks_crm_get_task
Get a task.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_task '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_task '{}' --json freshworks-crm.freshworks_crm_create_task
Create a task.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_task '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_task '{}' --json freshworks-crm.freshworks_crm_update_task
Update a task.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_task '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_task '{}' --json freshworks-crm.freshworks_crm_delete_task
Delete a task.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_task '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_task '{}' --json freshworks-crm.freshworks_crm_list_appointments
List appointments.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_appointments '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_appointments '{}' --json freshworks-crm.freshworks_crm_get_appointment
Get an appointment.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_appointment '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_appointment '{}' --json freshworks-crm.freshworks_crm_create_appointment
Create an appointment.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_appointment '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_appointment '{}' --json freshworks-crm.freshworks_crm_update_appointment
Update an appointment.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_appointment '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_appointment '{}' --json freshworks-crm.freshworks_crm_delete_appointment
Delete an appointment.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_appointment '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_appointment '{}' --json freshworks-crm.freshworks_crm_create_note
Create a note.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_note '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_note '{}' --json freshworks-crm.freshworks_crm_get_note
Get a note.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_note '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_note '{}' --json freshworks-crm.freshworks_crm_update_note
Update a note.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_note '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_note '{}' --json freshworks-crm.freshworks_crm_delete_note
Delete a note.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_note '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_note '{}' --json freshworks-crm.freshworks_crm_create_phone_call
Create a manual phone call log.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_phone_call '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_phone_call '{}' --json freshworks-crm.freshworks_crm_list_sales_activities
List sales activities.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_sales_activities '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_sales_activities '{}' --json freshworks-crm.freshworks_crm_get_sales_activity
Get a sales activity.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_sales_activity '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_sales_activity '{}' --json freshworks-crm.freshworks_crm_create_sales_activity
Create a sales activity.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_create_sales_activity '{}' --json kosmo integrations:freshworks-crm freshworks_crm_create_sales_activity '{}' --json freshworks-crm.freshworks_crm_update_sales_activity
Update a sales activity.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_update_sales_activity '{}' --json kosmo integrations:freshworks-crm freshworks_crm_update_sales_activity '{}' --json freshworks-crm.freshworks_crm_delete_sales_activity
Delete a sales activity.
write - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_delete_sales_activity '{}' --json kosmo integrations:freshworks-crm freshworks_crm_delete_sales_activity '{}' --json freshworks-crm.freshworks_crm_get_current_user
Get the currently authenticated Freshworks CRM user. Useful for verifying credentials and understanding whose context the agent is operating in.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_get_current_user '{}' --json kosmo integrations:freshworks-crm freshworks_crm_get_current_user '{}' --json freshworks-crm.freshworks_crm_search
Run global search.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_search '{}' --json kosmo integrations:freshworks-crm freshworks_crm_search '{}' --json freshworks-crm.freshworks_crm_lookup
Run lookup search.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_lookup '{}' --json kosmo integrations:freshworks-crm freshworks_crm_lookup '{}' --json freshworks-crm.freshworks_crm_filtered_search_contact
Run filtered contact search.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_filtered_search_contact '{}' --json kosmo integrations:freshworks-crm freshworks_crm_filtered_search_contact '{}' --json freshworks-crm.freshworks_crm_list_contact_fields
List contact fields.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_contact_fields '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_contact_fields '{}' --json freshworks-crm.freshworks_crm_list_account_fields
List account fields.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_account_fields '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_account_fields '{}' --json freshworks-crm.freshworks_crm_list_deal_fields
List deal fields.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_deal_fields '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_deal_fields '{}' --json freshworks-crm.freshworks_crm_list_sales_activity_fields
List sales activity fields.
read - Parameters
- none
kosmo integrations:call freshworks-crm.freshworks_crm_list_sales_activity_fields '{}' --json kosmo integrations:freshworks-crm freshworks_crm_list_sales_activity_fields '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
freshworks-crm.freshworks_crm_list_contacts 2 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | no | Page number for pagination (default: 1). |
per_page | integer | no | Number of contacts per page (default: 20, max: 100). |
freshworks-crm.freshworks_crm_get_contact 1 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The contact ID. |
freshworks-crm.freshworks_crm_create_contact 4 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
first_name | string | no | First name of the contact. |
last_name | string | no | Last name of the contact. |
email | string | no | Email address of the contact. |
mobile_number | string | no | Mobile phone number of the contact. |
freshworks-crm.freshworks_crm_update_contact 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_contact 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_contact_filters 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contact_filters --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_contact_view 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_contact_view --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_bulk_upsert_contacts 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_accounts 2 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_accounts --json | Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | no | Page number for pagination (default: 1). |
per_page | integer | no | Number of accounts per page (default: 20, max: 100). |
freshworks-crm.freshworks_crm_get_account 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_account 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_account 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_account 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_account_filters 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_account_filters --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_bulk_upsert_accounts 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_accounts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_deals 3 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deals --json | Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | no | Page number for pagination (default: 1). |
per_page | integer | no | Number of deals per page (default: 20, max: 100). |
stage | integer | no | Filter deals by stage ID (e.g., pipeline stage). |
freshworks-crm.freshworks_crm_get_deal 1 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_deal --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The deal ID. |
freshworks-crm.freshworks_crm_create_deal 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_deal --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_deal 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_deal --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_deal 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_deal --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_deal_filters 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deal_filters --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_deal_view 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_deal_view --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_bulk_upsert_deals 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_deals --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_tasks 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_task 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_task 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_task 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_task 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_appointments 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_appointments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_appointment 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_appointment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_appointment 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_appointment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_appointment 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_appointment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_appointment 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_appointment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_note 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_note 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_note 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_note 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_phone_call 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_phone_call --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_sales_activities 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_sales_activities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_sales_activity 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_sales_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_create_sales_activity 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_create_sales_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_update_sales_activity 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_update_sales_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_delete_sales_activity 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_sales_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_get_current_user 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_search 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_search --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_lookup 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_lookup --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_filtered_search_contact 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_filtered_search_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_contact_fields 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contact_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_account_fields 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_account_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_deal_fields 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deal_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
freshworks-crm.freshworks_crm_list_sales_activity_fields 0 parameters
kosmo integrations:schema freshworks-crm.freshworks_crm_list_sales_activity_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.