KosmoKrator

productivity

Copper CRM CLI for AI Agents

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

Copper CRM CLI Setup

Copper CRM can be configured headlessly with `kosmokrator integrations:configure copper`.

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 copper --set api_key="$COPPER_API_KEY" --set email="$COPPER_EMAIL" --enable --read allow --write ask --json
kosmokrator integrations:doctor copper --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 COPPER_API_KEY Secret secret yes API Key
email COPPER_EMAIL email email yes Account Email
url COPPER_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 copper.copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json
Provider shortcut
kosmo integrations:copper copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json

Discovery

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

Discovery commands
kosmo integrations:docs copper --json
kosmo integrations:docs copper.copper_list_contacts --json
kosmo integrations:schema copper.copper_list_contacts --json
kosmo integrations:search "Copper 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.

copper.copper_list_contacts

Search and list contacts in Copper CRM. Returns contact names, emails, and IDs.

Read read
Parameters
page_size, sort_by
Generic call
kosmo integrations:call copper.copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json
Shortcut
kosmo integrations:copper copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json

copper.copper_get_contact

Get details of a specific contact in Copper CRM by ID.

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

copper.copper_get_contact_by_email

Get a Copper person by email.

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

copper.copper_create_contact

Create a new contact in Copper CRM. Provide at least a name.

Write write
Parameters
name, email
Generic call
kosmo integrations:call copper.copper_create_contact '{"name":"example_name","email":"example_email"}' --json
Shortcut
kosmo integrations:copper copper_create_contact '{"name":"example_name","email":"example_email"}' --json

copper.copper_update_contact

Update an existing contact in Copper CRM. Only the fields provided will be updated.

Write write
Parameters
id, name, email
Generic call
kosmo integrations:call copper.copper_update_contact '{"id":1,"name":"example_name","email":"example_email"}' --json
Shortcut
kosmo integrations:copper copper_update_contact '{"id":1,"name":"example_name","email":"example_email"}' --json

copper.copper_delete_contact

Delete a contact from Copper CRM. This action cannot be undone.

Write write
Parameters
id
Generic call
kosmo integrations:call copper.copper_delete_contact '{"id":1}' --json
Shortcut
kosmo integrations:copper copper_delete_contact '{"id":1}' --json

copper.copper_list_companies

Search and list companies in Copper CRM. Returns company names, domains, and IDs.

Read read
Parameters
page_size, sort_by
Generic call
kosmo integrations:call copper.copper_list_companies '{"page_size":1,"sort_by":"example_sort_by"}' --json
Shortcut
kosmo integrations:copper copper_list_companies '{"page_size":1,"sort_by":"example_sort_by"}' --json

copper.copper_get_company

Get details of a specific company in Copper CRM by ID.

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

copper.copper_create_company

Create a new company in Copper CRM.

Write write
Parameters
name
Generic call
kosmo integrations:call copper.copper_create_company '{"name":"example_name"}' --json
Shortcut
kosmo integrations:copper copper_create_company '{"name":"example_name"}' --json

copper.copper_update_company

Update a company.

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

copper.copper_delete_company

Delete a company.

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

copper.copper_list_opportunities

Search and list opportunities (deals) in Copper CRM. Returns opportunity names, values, stages, and IDs.

Read read
Parameters
page_size, sort_by
Generic call
kosmo integrations:call copper.copper_list_opportunities '{"page_size":1,"sort_by":"example_sort_by"}' --json
Shortcut
kosmo integrations:copper copper_list_opportunities '{"page_size":1,"sort_by":"example_sort_by"}' --json

copper.copper_get_opportunity

Get details of a specific opportunity (deal) in Copper CRM by ID.

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

copper.copper_create_opportunity

Create a new opportunity (deal) in Copper CRM. Provide a name and pipeline ID. Use copper_list_pipelines first to find available pipeline IDs.

Write write
Parameters
name, pipeline_id
Generic call
kosmo integrations:call copper.copper_create_opportunity '{"name":"example_name","pipeline_id":1}' --json
Shortcut
kosmo integrations:copper copper_create_opportunity '{"name":"example_name","pipeline_id":1}' --json

copper.copper_update_opportunity

Update an opportunity.

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

copper.copper_delete_opportunity

Delete an opportunity.

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

copper.copper_list_leads

Search and list leads.

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

copper.copper_get_lead

Get a lead by ID.

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

copper.copper_create_lead

Create a lead.

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

copper.copper_update_lead

Update a lead.

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

copper.copper_delete_lead

Delete a lead.

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

copper.copper_list_projects

Search and list projects.

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

copper.copper_get_project

Get a project by ID.

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

copper.copper_create_project

Create a project.

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

copper.copper_update_project

Update a project.

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

copper.copper_delete_project

Delete a project.

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

copper.copper_list_tasks

Search and list tasks.

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

copper.copper_get_task

Get a task by ID.

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

copper.copper_create_task

Create a task.

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

copper.copper_update_task

Update a task.

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

copper.copper_delete_task

Delete a task.

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

copper.copper_list_activities

Search and list activities.

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

copper.copper_get_activity

Get an activity by ID.

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

copper.copper_create_activity

Create an activity.

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

copper.copper_update_activity

Update an activity.

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

copper.copper_delete_activity

Delete an activity.

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

copper.copper_list_activity_types

List activity types.

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

copper.copper_get_current_user

Get the currently authenticated Copper CRM user. Useful for verifying the connection and account context.

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

copper.copper_list_users

Search and list users.

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

copper.copper_get_user

Get a user by ID.

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

copper.copper_get_account_details

Get account details.

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

copper.copper_list_pipelines

List all sales pipelines in Copper CRM. Each pipeline contains stages that opportunities move through.

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

copper.copper_list_pipeline_stages

List pipeline stages.

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

copper.copper_list_pipeline_stages_in_pipeline

List stages in one pipeline.

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

copper.copper_list_lead_statuses

List lead statuses.

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

copper.copper_list_customer_sources

List customer sources.

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

copper.copper_list_loss_reasons

List opportunity loss reasons.

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

copper.copper_list_contact_types

List contact types.

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

copper.copper_list_tags

List tags.

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

copper.copper_list_custom_field_definitions

List custom field definitions.

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

copper.copper_list_webhooks

List webhook subscriptions.

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

copper.copper_get_webhook

Get a webhook subscription.

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

copper.copper_create_webhook

Create a webhook subscription.

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

copper.copper_update_webhook

Update a webhook subscription.

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

copper.copper_delete_webhook

Delete a webhook subscription.

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

Function Schemas

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

copper.copper_list_contacts 2 parameters
Schema command
kosmo integrations:schema copper.copper_list_contacts --json
ParameterTypeRequiredDescription
page_size integer no Number of contacts to return per page (default: 25, max: 200).
sort_by string no Field to sort by (e.g., "name", "created_at").
copper.copper_get_contact 1 parameters
Schema command
kosmo integrations:schema copper.copper_get_contact --json
ParameterTypeRequiredDescription
id integer yes The Copper contact ID.
copper.copper_get_contact_by_email 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_contact_by_email --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_contact 2 parameters
Schema command
kosmo integrations:schema copper.copper_create_contact --json
ParameterTypeRequiredDescription
name string yes Full name of the contact.
email string no Email address of the contact.
copper.copper_update_contact 3 parameters
Schema command
kosmo integrations:schema copper.copper_update_contact --json
ParameterTypeRequiredDescription
id integer yes The Copper contact ID to update.
name string no Updated full name of the contact.
email string no Updated email address.
copper.copper_delete_contact 1 parameters
Schema command
kosmo integrations:schema copper.copper_delete_contact --json
ParameterTypeRequiredDescription
id integer yes The Copper contact ID to delete.
copper.copper_list_companies 2 parameters
Schema command
kosmo integrations:schema copper.copper_list_companies --json
ParameterTypeRequiredDescription
page_size integer no Number of companies to return per page (default: 25, max: 200).
sort_by string no Field to sort by (e.g., "name", "created_at").
copper.copper_get_company 1 parameters
Schema command
kosmo integrations:schema copper.copper_get_company --json
ParameterTypeRequiredDescription
id integer yes The Copper company ID.
copper.copper_create_company 1 parameters
Schema command
kosmo integrations:schema copper.copper_create_company --json
ParameterTypeRequiredDescription
name string yes Company name.
copper.copper_update_company 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_company --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_company 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_company --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_opportunities 2 parameters
Schema command
kosmo integrations:schema copper.copper_list_opportunities --json
ParameterTypeRequiredDescription
page_size integer no Number of opportunities to return per page (default: 25, max: 200).
sort_by string no Field to sort by (e.g., "name", "created_at").
copper.copper_get_opportunity 1 parameters
Schema command
kosmo integrations:schema copper.copper_get_opportunity --json
ParameterTypeRequiredDescription
id integer yes The Copper opportunity ID.
copper.copper_create_opportunity 2 parameters
Schema command
kosmo integrations:schema copper.copper_create_opportunity --json
ParameterTypeRequiredDescription
name string yes Opportunity name.
pipeline_id integer yes ID of the pipeline to create the opportunity in. Use copper_list_pipelines to find available IDs.
copper.copper_update_opportunity 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_opportunity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_opportunity 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_opportunity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_leads 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_leads --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_lead 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_lead --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_lead 0 parameters
Schema command
kosmo integrations:schema copper.copper_create_lead --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_update_lead 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_lead --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_lead 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_lead --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_projects 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_projects --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_project 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_project --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_project 0 parameters
Schema command
kosmo integrations:schema copper.copper_create_project --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_update_project 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_project --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_project 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_project --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_tasks 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_tasks --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_task 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_task --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_task 0 parameters
Schema command
kosmo integrations:schema copper.copper_create_task --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_update_task 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_task --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_task 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_task --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_activities 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_activities --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_activity 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_activity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_activity 0 parameters
Schema command
kosmo integrations:schema copper.copper_create_activity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_update_activity 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_activity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_activity 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_activity --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_activity_types 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_activity_types --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_current_user 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_users 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_users --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_user 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_user --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_account_details 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_account_details --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_pipelines 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_pipelines --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_pipeline_stages 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_pipeline_stages --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_pipeline_stages_in_pipeline 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_pipeline_stages_in_pipeline --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_lead_statuses 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_lead_statuses --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_customer_sources 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_customer_sources --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_loss_reasons 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_loss_reasons --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_contact_types 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_contact_types --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_tags 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_tags --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_custom_field_definitions 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_custom_field_definitions --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_list_webhooks 0 parameters
Schema command
kosmo integrations:schema copper.copper_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_get_webhook 0 parameters
Schema command
kosmo integrations:schema copper.copper_get_webhook --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_create_webhook 0 parameters
Schema command
kosmo integrations:schema copper.copper_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_update_webhook 0 parameters
Schema command
kosmo integrations:schema copper.copper_update_webhook --json
ParameterTypeRequiredDescription
No parameters.
copper.copper_delete_webhook 0 parameters
Schema command
kosmo integrations:schema copper.copper_delete_webhook --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.