KosmoKrator

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, configure, and verify
# 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.

KeyEnv varTypeRequiredLabel
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.

Generic CLI call
kosmo integrations:call freshworks-crm.freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json
Provider shortcut
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.

Discovery commands
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 read
Parameters
page, per_page
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_contacts '{"page":1,"per_page":1}' --json
Shortcut
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 read
Parameters
id
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_contact '{"id":1}' --json
Shortcut
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 write
Parameters
first_name, last_name, email, mobile_number
Generic call
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
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_contact '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_contact '{}' --json

freshworks-crm.freshworks_crm_delete_contact

Delete a contact.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_contact '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_contact '{}' --json

freshworks-crm.freshworks_crm_list_contact_filters

List contact filters.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_contact_filters '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_contact_filters '{}' --json

freshworks-crm.freshworks_crm_get_contact_view

Fetch contacts from a view.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_contact_view '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_contact_view '{}' --json

freshworks-crm.freshworks_crm_bulk_upsert_contacts

Bulk upsert contacts.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_contacts '{}' --json
Shortcut
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 read
Parameters
page, per_page
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_accounts '{"page":1,"per_page":1}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_account '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_account '{}' --json

freshworks-crm.freshworks_crm_create_account

Create a sales account.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_account '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_account '{}' --json

freshworks-crm.freshworks_crm_update_account

Update a sales account.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_account '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_account '{}' --json

freshworks-crm.freshworks_crm_delete_account

Delete a sales account.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_account '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_account '{}' --json

freshworks-crm.freshworks_crm_list_account_filters

List sales account filters.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_account_filters '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_account_filters '{}' --json

freshworks-crm.freshworks_crm_bulk_upsert_accounts

Bulk upsert accounts.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_accounts '{}' --json
Shortcut
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 read
Parameters
page, per_page, stage
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_deals '{"page":1,"per_page":1,"stage":1}' --json
Shortcut
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 read
Parameters
id
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_deal '{"id":1}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_deal '{"id":1}' --json

freshworks-crm.freshworks_crm_create_deal

Create a deal.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_deal '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_deal '{}' --json

freshworks-crm.freshworks_crm_update_deal

Update a deal.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_deal '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_deal '{}' --json

freshworks-crm.freshworks_crm_delete_deal

Delete a deal.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_deal '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_deal '{}' --json

freshworks-crm.freshworks_crm_list_deal_filters

List deal filters.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_deal_filters '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_deal_filters '{}' --json

freshworks-crm.freshworks_crm_get_deal_view

Fetch deals from a view.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_deal_view '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_deal_view '{}' --json

freshworks-crm.freshworks_crm_bulk_upsert_deals

Bulk upsert deals.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_bulk_upsert_deals '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_bulk_upsert_deals '{}' --json

freshworks-crm.freshworks_crm_list_tasks

List tasks.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_tasks '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_tasks '{}' --json

freshworks-crm.freshworks_crm_get_task

Get a task.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_task '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_task '{}' --json

freshworks-crm.freshworks_crm_create_task

Create a task.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_task '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_task '{}' --json

freshworks-crm.freshworks_crm_update_task

Update a task.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_task '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_task '{}' --json

freshworks-crm.freshworks_crm_delete_task

Delete a task.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_task '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_task '{}' --json

freshworks-crm.freshworks_crm_list_appointments

List appointments.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_appointments '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_appointments '{}' --json

freshworks-crm.freshworks_crm_get_appointment

Get an appointment.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_appointment '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_appointment '{}' --json

freshworks-crm.freshworks_crm_create_appointment

Create an appointment.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_appointment '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_appointment '{}' --json

freshworks-crm.freshworks_crm_update_appointment

Update an appointment.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_appointment '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_appointment '{}' --json

freshworks-crm.freshworks_crm_delete_appointment

Delete an appointment.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_appointment '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_appointment '{}' --json

freshworks-crm.freshworks_crm_create_note

Create a note.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_note '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_note '{}' --json

freshworks-crm.freshworks_crm_get_note

Get a note.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_note '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_note '{}' --json

freshworks-crm.freshworks_crm_update_note

Update a note.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_note '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_note '{}' --json

freshworks-crm.freshworks_crm_delete_note

Delete a note.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_note '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_delete_note '{}' --json

freshworks-crm.freshworks_crm_create_phone_call

Create a manual phone call log.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_phone_call '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_phone_call '{}' --json

freshworks-crm.freshworks_crm_list_sales_activities

List sales activities.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_sales_activities '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_sales_activities '{}' --json

freshworks-crm.freshworks_crm_get_sales_activity

Get a sales activity.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_sales_activity '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_sales_activity '{}' --json

freshworks-crm.freshworks_crm_create_sales_activity

Create a sales activity.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_create_sales_activity '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_create_sales_activity '{}' --json

freshworks-crm.freshworks_crm_update_sales_activity

Update a sales activity.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_update_sales_activity '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_update_sales_activity '{}' --json

freshworks-crm.freshworks_crm_delete_sales_activity

Delete a sales activity.

Write write
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_delete_sales_activity '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_get_current_user '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_get_current_user '{}' --json

freshworks-crm.freshworks_crm_search

Run global search.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_search '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_search '{}' --json

freshworks-crm.freshworks_crm_lookup

Run lookup search.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_lookup '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_lookup '{}' --json

freshworks-crm.freshworks_crm_filtered_search_contact

Run filtered contact search.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_filtered_search_contact '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_filtered_search_contact '{}' --json

freshworks-crm.freshworks_crm_list_contact_fields

List contact fields.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_contact_fields '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_contact_fields '{}' --json

freshworks-crm.freshworks_crm_list_account_fields

List account fields.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_account_fields '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_account_fields '{}' --json

freshworks-crm.freshworks_crm_list_deal_fields

List deal fields.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_deal_fields '{}' --json
Shortcut
kosmo integrations:freshworks-crm freshworks_crm_list_deal_fields '{}' --json

freshworks-crm.freshworks_crm_list_sales_activity_fields

List sales activity fields.

Read read
Parameters
none
Generic call
kosmo integrations:call freshworks-crm.freshworks_crm_list_sales_activity_fields '{}' --json
Shortcut
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
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contacts --json
ParameterTypeRequiredDescription
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
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_contact --json
ParameterTypeRequiredDescription
id integer yes The contact ID.
freshworks-crm.freshworks_crm_create_contact 4 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_contact --json
ParameterTypeRequiredDescription
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
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_contact --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_contact 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_contact --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_contact_filters 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contact_filters --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_contact_view 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_contact_view --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_bulk_upsert_contacts 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_contacts --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_accounts 2 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_accounts --json
ParameterTypeRequiredDescription
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
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_account --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_account 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_account --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_account 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_account --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_account 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_account --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_account_filters 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_account_filters --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_bulk_upsert_accounts 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_accounts --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_deals 3 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deals --json
ParameterTypeRequiredDescription
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
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_deal --json
ParameterTypeRequiredDescription
id integer yes The deal ID.
freshworks-crm.freshworks_crm_create_deal 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_deal --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_deal 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_deal --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_deal 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_deal --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_deal_filters 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deal_filters --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_deal_view 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_deal_view --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_bulk_upsert_deals 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_bulk_upsert_deals --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_tasks 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_tasks --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_task 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_task --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_task 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_task --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_task 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_task --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_task 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_task --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_appointments 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_appointments --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_appointment 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_appointment --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_appointment 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_appointment --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_appointment 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_appointment --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_appointment 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_appointment --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_note 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_note --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_note 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_note --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_note 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_note --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_note 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_note --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_phone_call 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_phone_call --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_sales_activities 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_sales_activities --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_sales_activity 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_sales_activity --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_create_sales_activity 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_create_sales_activity --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_update_sales_activity 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_update_sales_activity --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_delete_sales_activity 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_delete_sales_activity --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_get_current_user 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_lookup 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_lookup --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_filtered_search_contact 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_filtered_search_contact --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_contact_fields 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_contact_fields --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_account_fields 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_account_fields --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_deal_fields 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_deal_fields --json
ParameterTypeRequiredDescription
No parameters.
freshworks-crm.freshworks_crm_list_sales_activity_fields 0 parameters
Schema command
kosmo integrations:schema freshworks-crm.freshworks_crm_list_sales_activity_fields --json
ParameterTypeRequiredDescription
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.