KosmoKrator

productivity

Insightly CRM CLI for AI Agents

Use the Insightly CRM CLI from KosmoKrator to call Insightly CRM tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Insightly CRM CLI Setup

Insightly CRM can be configured headlessly with `kosmokrator integrations:configure insightly`.

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 insightly --set api_key="$INSIGHTLY_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor insightly --json
kosmokrator integrations:status --json

Credentials

Authentication type: basic api key basic_api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key INSIGHTLY_API_KEY Secret secret yes API Key
base_url INSIGHTLY_BASE_URL URL url no API 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 insightly.insightly_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","phone":"example_phone"}' --json
Provider shortcut
kosmo integrations:insightly insightly_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","phone":"example_phone"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs insightly --json
kosmo integrations:docs insightly.insightly_create_contact --json
kosmo integrations:schema insightly.insightly_create_contact --json
kosmo integrations:search "Insightly 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.

insightly.insightly_create_contact

Create a new contact in Insightly CRM. Provide contact details such as first name, last name, email, and phone. Returns the created contact with its new ID.

Write write
Parameters
first_name, last_name, email, phone
Generic call
kosmo integrations:call insightly.insightly_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","phone":"example_phone"}' --json
Shortcut
kosmo integrations:insightly insightly_create_contact '{"first_name":"example_first_name","last_name":"example_last_name","email":"example_email","phone":"example_phone"}' --json

insightly.insightly_create_event

Create Event via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_event '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_event '{}' --json

insightly.insightly_create_lead

Create Lead via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_lead '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_lead '{}' --json

insightly.insightly_create_note_comment

Create Note Comment via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_note_comment '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_note_comment '{}' --json

insightly.insightly_create_opportunity

Create Opportunity via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_opportunity '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_opportunity '{}' --json

insightly.insightly_create_organization

Create Organization via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_organization '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_organization '{}' --json

insightly.insightly_create_project

Create Project via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_project '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_project '{}' --json

insightly.insightly_create_task

Create Task via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_task '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_task '{}' --json

insightly.insightly_create_task_category

Create Task Category via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_task_category '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_task_category '{}' --json

insightly.insightly_create_team

Create Team via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_team '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_team '{}' --json

insightly.insightly_create_team_member

Create Team Member via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_create_team_member '{}' --json
Shortcut
kosmo integrations:insightly insightly_create_team_member '{}' --json

insightly.insightly_delete_contact

Delete Contact via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_contact '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_contact '{}' --json

insightly.insightly_delete_event

Delete Event via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_event '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_event '{}' --json

insightly.insightly_delete_lead

Delete Lead via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_lead '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_lead '{}' --json

insightly.insightly_delete_note

Delete Note via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_note '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_note '{}' --json

insightly.insightly_delete_note_comment

Delete Note Comment via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_note_comment '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_note_comment '{}' --json

insightly.insightly_delete_opportunity

Delete Opportunity via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_opportunity '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_opportunity '{}' --json

insightly.insightly_delete_organization

Delete Organization via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_organization '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_organization '{}' --json

insightly.insightly_delete_project

Delete Project via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_project '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_project '{}' --json

insightly.insightly_delete_task

Delete Task via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_task '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_task '{}' --json

insightly.insightly_delete_task_category

Delete Task Category via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_task_category '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_task_category '{}' --json

insightly.insightly_delete_team

Delete Team via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_team '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_team '{}' --json

insightly.insightly_delete_team_member

Delete Team Member via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_delete_team_member '{}' --json
Shortcut
kosmo integrations:insightly insightly_delete_team_member '{}' --json

insightly.insightly_get_activity_set

Get Activity Set via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_activity_set '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_activity_set '{}' --json

insightly.insightly_get_contact

Get detailed information about a single Insightly contact by ID. Returns all contact fields including addresses, emails, phones, and linked organizations.

Read read
Parameters
id
Generic call
kosmo integrations:call insightly.insightly_get_contact '{"id":1}' --json
Shortcut
kosmo integrations:insightly insightly_get_contact '{"id":1}' --json

insightly.insightly_get_current_user

Get the profile of the currently authenticated Insightly user. Returns user name, email, account info, and timezone settings. Useful for verifying API connectivity.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_current_user '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_current_user '{}' --json

insightly.insightly_get_event

Get Event via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_event '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_event '{}' --json

insightly.insightly_get_instance

Get Instance via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_instance '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_instance '{}' --json

insightly.insightly_get_lead

Get Lead via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_lead '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_lead '{}' --json

insightly.insightly_get_note

Get Note via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_note '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_note '{}' --json

insightly.insightly_get_opportunity

Get detailed information about a single Insightly opportunity by ID. Returns all opportunity fields including amount, stage, pipeline, and linked contacts.

Read read
Parameters
id
Generic call
kosmo integrations:call insightly.insightly_get_opportunity '{"id":1}' --json
Shortcut
kosmo integrations:insightly insightly_get_opportunity '{"id":1}' --json

insightly.insightly_get_organization

Get Organization via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_organization '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_organization '{}' --json

insightly.insightly_get_pipeline

Get Pipeline via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_pipeline '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_pipeline '{}' --json

insightly.insightly_get_pipeline_stage

Get Pipeline Stage via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_pipeline_stage '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_pipeline_stage '{}' --json

insightly.insightly_get_project

Get Project via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_project '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_project '{}' --json

insightly.insightly_get_task

Get Task via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_task '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_task '{}' --json

insightly.insightly_get_task_category

Get Task Category via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_task_category '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_task_category '{}' --json

insightly.insightly_get_team

Get Team via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_team '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_team '{}' --json

insightly.insightly_get_team_member

Get Team Member via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_team_member '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_team_member '{}' --json

insightly.insightly_get_user

Get User via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_get_user '{}' --json
Shortcut
kosmo integrations:insightly insightly_get_user '{}' --json

insightly.insightly_list_activity_sets

List Activity Sets via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_activity_sets '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_activity_sets '{}' --json

insightly.insightly_list_contacts

List contacts from Insightly CRM. Returns contact records with names, emails, phones, and organization info. Use top/skip for pagination.

Read read
Parameters
top, skip, brief, count_total
Generic call
kosmo integrations:call insightly.insightly_list_contacts '{"top":1,"skip":1,"brief":true,"count_total":true}' --json
Shortcut
kosmo integrations:insightly insightly_list_contacts '{"top":1,"skip":1,"brief":true,"count_total":true}' --json

insightly.insightly_list_countries

List Countries via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_countries '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_countries '{}' --json

insightly.insightly_list_currencies

List Currencies via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_currencies '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_currencies '{}' --json

insightly.insightly_list_custom_fields

List Custom Fields via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_custom_fields '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_custom_fields '{}' --json

insightly.insightly_list_events

List Events via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_events '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_events '{}' --json

insightly.insightly_list_lead_sources

List Lead Sources via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_lead_sources '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_lead_sources '{}' --json

insightly.insightly_list_lead_statuses

List Lead Statuses via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_lead_statuses '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_lead_statuses '{}' --json

insightly.insightly_list_leads

List Leads via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_leads '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_leads '{}' --json

insightly.insightly_list_note_comments

List Note Comments via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_note_comments '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_note_comments '{}' --json

insightly.insightly_list_notes

List Notes via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_notes '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_notes '{}' --json

insightly.insightly_list_opportunities

List opportunities from Insightly CRM. Returns opportunity records with names, amounts, stages, and pipeline info. Use top/skip for pagination.

Read read
Parameters
top, skip, brief, count_total
Generic call
kosmo integrations:call insightly.insightly_list_opportunities '{"top":1,"skip":1,"brief":true,"count_total":true}' --json
Shortcut
kosmo integrations:insightly insightly_list_opportunities '{"top":1,"skip":1,"brief":true,"count_total":true}' --json

insightly.insightly_list_opportunity_categories

List Opportunity Categories via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_opportunity_categories '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_opportunity_categories '{}' --json

insightly.insightly_list_organizations

List Organizations via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_organizations '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_organizations '{}' --json

insightly.insightly_list_permissions

List Permissions via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_permissions '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_permissions '{}' --json

insightly.insightly_list_pipeline_stages

List Pipeline Stages via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_pipeline_stages '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_pipeline_stages '{}' --json

insightly.insightly_list_pipelines

List Pipelines via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_pipelines '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_pipelines '{}' --json

insightly.insightly_list_project_categories

List Project Categories via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_project_categories '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_project_categories '{}' --json

insightly.insightly_list_projects

List projects from Insightly CRM. Returns project records with names, statuses, dates, and linked records. Use top/skip for pagination.

Read read
Parameters
top, skip, brief, count_total
Generic call
kosmo integrations:call insightly.insightly_list_projects '{"top":1,"skip":1,"brief":true,"count_total":true}' --json
Shortcut
kosmo integrations:insightly insightly_list_projects '{"top":1,"skip":1,"brief":true,"count_total":true}' --json

insightly.insightly_list_tags

List Tags via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_tags '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_tags '{}' --json

insightly.insightly_list_task_categories

List Task Categories via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_task_categories '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_task_categories '{}' --json

insightly.insightly_list_tasks

List Tasks via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_tasks '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_tasks '{}' --json

insightly.insightly_list_team_members

List Team Members via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_team_members '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_team_members '{}' --json

insightly.insightly_list_teams

List Teams via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_teams '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_teams '{}' --json

insightly.insightly_list_users

List Users via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_list_users '{}' --json
Shortcut
kosmo integrations:insightly insightly_list_users '{}' --json

insightly.insightly_search_contacts

Search Contacts via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_contacts '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_contacts '{}' --json

insightly.insightly_search_contacts_by_tag

Search Contacts By Tag via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_contacts_by_tag '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_contacts_by_tag '{}' --json

insightly.insightly_search_custom_fields

Search Custom Fields via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_custom_fields '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_custom_fields '{}' --json

insightly.insightly_search_events

Search Events via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_events '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_events '{}' --json

insightly.insightly_search_leads

Search Leads via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_leads '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_leads '{}' --json

insightly.insightly_search_leads_by_tag

Search Leads By Tag via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_leads_by_tag '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_leads_by_tag '{}' --json

insightly.insightly_search_notes

Search Notes via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_notes '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_notes '{}' --json

insightly.insightly_search_opportunities

Search Opportunities via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_opportunities '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_opportunities '{}' --json

insightly.insightly_search_opportunities_by_tag

Search Opportunities By Tag via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_opportunities_by_tag '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_opportunities_by_tag '{}' --json

insightly.insightly_search_organizations

Search Organizations via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_organizations '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_organizations '{}' --json

insightly.insightly_search_organizations_by_tag

Search Organizations By Tag via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_organizations_by_tag '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_organizations_by_tag '{}' --json

insightly.insightly_search_projects

Search Projects via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_projects '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_projects '{}' --json

insightly.insightly_search_projects_by_tag

Search Projects By Tag via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_projects_by_tag '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_projects_by_tag '{}' --json

insightly.insightly_search_users

Search Users via Insightly.

Read read
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_search_users '{}' --json
Shortcut
kosmo integrations:insightly insightly_search_users '{}' --json

insightly.insightly_update_contact

Update Contact via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_contact '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_contact '{}' --json

insightly.insightly_update_event

Update Event via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_event '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_event '{}' --json

insightly.insightly_update_lead

Update Lead via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_lead '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_lead '{}' --json

insightly.insightly_update_note

Update Note via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_note '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_note '{}' --json

insightly.insightly_update_opportunity

Update Opportunity via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_opportunity '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_opportunity '{}' --json

insightly.insightly_update_organization

Update Organization via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_organization '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_organization '{}' --json

insightly.insightly_update_project

Update Project via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_project '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_project '{}' --json

insightly.insightly_update_task

Update Task via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_task '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_task '{}' --json

insightly.insightly_update_task_category

Update Task Category via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_task_category '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_task_category '{}' --json

insightly.insightly_update_team

Update Team via Insightly.

Write write
Parameters
none
Generic call
kosmo integrations:call insightly.insightly_update_team '{}' --json
Shortcut
kosmo integrations:insightly insightly_update_team '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

insightly.insightly_create_contact 4 parameters
Schema command
kosmo integrations:schema insightly.insightly_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 Primary email address.
phone string no Primary phone number.
insightly.insightly_create_event 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_event --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_lead 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_lead --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_note_comment 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_note_comment --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_opportunity 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_opportunity --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_organization 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_organization --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_project 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_project --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_task 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_task --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_task_category 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_task_category --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_team 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_team --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_create_team_member 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_create_team_member --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_contact 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_contact --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_event 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_event --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_lead 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_lead --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_note 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_note --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_note_comment 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_note_comment --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_opportunity 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_opportunity --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_organization 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_organization --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_project 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_project --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_task 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_task --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_task_category 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_task_category --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_team 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_team --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_delete_team_member 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_delete_team_member --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_activity_set 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_activity_set --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_contact 1 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_contact --json
ParameterTypeRequiredDescription
id integer yes The Insightly contact ID.
insightly.insightly_get_current_user 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_event 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_event --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_instance 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_instance --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_lead 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_lead --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_note 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_note --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_opportunity 1 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_opportunity --json
ParameterTypeRequiredDescription
id integer yes The Insightly opportunity ID.
insightly.insightly_get_organization 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_organization --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_pipeline 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_pipeline --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_pipeline_stage 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_pipeline_stage --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_project 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_project --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_task 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_task --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_task_category 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_task_category --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_team 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_team --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_team_member 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_team_member --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_get_user 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_get_user --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_activity_sets 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_activity_sets --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_contacts 4 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_contacts --json
ParameterTypeRequiredDescription
top integer no Maximum number of contacts to return.
skip integer no Number of contacts to skip for pagination.
brief boolean no Return only top-level contact properties.
count_total boolean no Ask Insightly to include total count metadata.
insightly.insightly_list_countries 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_countries --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_currencies 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_currencies --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_custom_fields 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_custom_fields --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_events 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_events --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_lead_sources 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_lead_sources --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_lead_statuses 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_lead_statuses --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_leads 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_leads --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_note_comments 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_note_comments --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_notes 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_notes --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_opportunities 4 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_opportunities --json
ParameterTypeRequiredDescription
top integer no Maximum number of opportunities to return.
skip integer no Number of opportunities to skip for pagination.
brief boolean no Return only top-level opportunity properties.
count_total boolean no Ask Insightly to include total count metadata.
insightly.insightly_list_opportunity_categories 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_opportunity_categories --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_organizations 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_organizations --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_permissions 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_permissions --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_pipeline_stages 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_pipeline_stages --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_pipelines 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_pipelines --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_project_categories 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_project_categories --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_projects 4 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_projects --json
ParameterTypeRequiredDescription
top integer no Maximum number of projects to return.
skip integer no Number of projects to skip for pagination.
brief boolean no Return only top-level project properties.
count_total boolean no Ask Insightly to include total count metadata.
insightly.insightly_list_tags 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_tags --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_task_categories 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_task_categories --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_tasks 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_tasks --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_team_members 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_team_members --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_teams 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_teams --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_list_users 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_list_users --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_contacts 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_contacts --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_contacts_by_tag 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_contacts_by_tag --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_custom_fields 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_custom_fields --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_events 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_events --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_leads 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_leads --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_leads_by_tag 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_leads_by_tag --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_notes 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_notes --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_opportunities 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_opportunities --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_opportunities_by_tag 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_opportunities_by_tag --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_organizations 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_organizations --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_organizations_by_tag 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_organizations_by_tag --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_projects 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_projects --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_projects_by_tag 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_projects_by_tag --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_search_users 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_search_users --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_contact 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_contact --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_event 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_event --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_lead 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_lead --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_note 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_note --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_opportunity 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_opportunity --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_organization 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_organization --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_project 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_project --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_task 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_task --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_task_category 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_task_category --json
ParameterTypeRequiredDescription
No parameters.
insightly.insightly_update_team 0 parameters
Schema command
kosmo integrations:schema insightly.insightly_update_team --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.