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 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.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
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.
kosmo integrations:call copper.copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json 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.
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 - Parameters
- page_size, sort_by
kosmo integrations:call copper.copper_list_contacts '{"page_size":1,"sort_by":"example_sort_by"}' --json 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 - Parameters
- id
kosmo integrations:call copper.copper_get_contact '{"id":1}' --json kosmo integrations:copper copper_get_contact '{"id":1}' --json copper.copper_get_contact_by_email
Get a Copper person by email.
read - Parameters
- none
kosmo integrations:call copper.copper_get_contact_by_email '{}' --json 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 - Parameters
- name, email
kosmo integrations:call copper.copper_create_contact '{"name":"example_name","email":"example_email"}' --json 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 - Parameters
- id, name, email
kosmo integrations:call copper.copper_update_contact '{"id":1,"name":"example_name","email":"example_email"}' --json 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 - Parameters
- id
kosmo integrations:call copper.copper_delete_contact '{"id":1}' --json 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 - Parameters
- page_size, sort_by
kosmo integrations:call copper.copper_list_companies '{"page_size":1,"sort_by":"example_sort_by"}' --json 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 - Parameters
- id
kosmo integrations:call copper.copper_get_company '{"id":1}' --json kosmo integrations:copper copper_get_company '{"id":1}' --json copper.copper_create_company
Create a new company in Copper CRM.
write - Parameters
- name
kosmo integrations:call copper.copper_create_company '{"name":"example_name"}' --json kosmo integrations:copper copper_create_company '{"name":"example_name"}' --json copper.copper_update_company
Update a company.
write - Parameters
- none
kosmo integrations:call copper.copper_update_company '{}' --json kosmo integrations:copper copper_update_company '{}' --json copper.copper_delete_company
Delete a company.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_company '{}' --json 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 - Parameters
- page_size, sort_by
kosmo integrations:call copper.copper_list_opportunities '{"page_size":1,"sort_by":"example_sort_by"}' --json 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 - Parameters
- id
kosmo integrations:call copper.copper_get_opportunity '{"id":1}' --json 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 - Parameters
- name, pipeline_id
kosmo integrations:call copper.copper_create_opportunity '{"name":"example_name","pipeline_id":1}' --json kosmo integrations:copper copper_create_opportunity '{"name":"example_name","pipeline_id":1}' --json copper.copper_update_opportunity
Update an opportunity.
write - Parameters
- none
kosmo integrations:call copper.copper_update_opportunity '{}' --json kosmo integrations:copper copper_update_opportunity '{}' --json copper.copper_delete_opportunity
Delete an opportunity.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_opportunity '{}' --json kosmo integrations:copper copper_delete_opportunity '{}' --json copper.copper_list_leads
Search and list leads.
read - Parameters
- none
kosmo integrations:call copper.copper_list_leads '{}' --json kosmo integrations:copper copper_list_leads '{}' --json copper.copper_get_lead
Get a lead by ID.
read - Parameters
- none
kosmo integrations:call copper.copper_get_lead '{}' --json kosmo integrations:copper copper_get_lead '{}' --json copper.copper_create_lead
Create a lead.
write - Parameters
- none
kosmo integrations:call copper.copper_create_lead '{}' --json kosmo integrations:copper copper_create_lead '{}' --json copper.copper_update_lead
Update a lead.
write - Parameters
- none
kosmo integrations:call copper.copper_update_lead '{}' --json kosmo integrations:copper copper_update_lead '{}' --json copper.copper_delete_lead
Delete a lead.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_lead '{}' --json kosmo integrations:copper copper_delete_lead '{}' --json copper.copper_list_projects
Search and list projects.
read - Parameters
- none
kosmo integrations:call copper.copper_list_projects '{}' --json kosmo integrations:copper copper_list_projects '{}' --json copper.copper_get_project
Get a project by ID.
read - Parameters
- none
kosmo integrations:call copper.copper_get_project '{}' --json kosmo integrations:copper copper_get_project '{}' --json copper.copper_create_project
Create a project.
write - Parameters
- none
kosmo integrations:call copper.copper_create_project '{}' --json kosmo integrations:copper copper_create_project '{}' --json copper.copper_update_project
Update a project.
write - Parameters
- none
kosmo integrations:call copper.copper_update_project '{}' --json kosmo integrations:copper copper_update_project '{}' --json copper.copper_delete_project
Delete a project.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_project '{}' --json kosmo integrations:copper copper_delete_project '{}' --json copper.copper_list_tasks
Search and list tasks.
read - Parameters
- none
kosmo integrations:call copper.copper_list_tasks '{}' --json kosmo integrations:copper copper_list_tasks '{}' --json copper.copper_get_task
Get a task by ID.
read - Parameters
- none
kosmo integrations:call copper.copper_get_task '{}' --json kosmo integrations:copper copper_get_task '{}' --json copper.copper_create_task
Create a task.
write - Parameters
- none
kosmo integrations:call copper.copper_create_task '{}' --json kosmo integrations:copper copper_create_task '{}' --json copper.copper_update_task
Update a task.
write - Parameters
- none
kosmo integrations:call copper.copper_update_task '{}' --json kosmo integrations:copper copper_update_task '{}' --json copper.copper_delete_task
Delete a task.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_task '{}' --json kosmo integrations:copper copper_delete_task '{}' --json copper.copper_list_activities
Search and list activities.
read - Parameters
- none
kosmo integrations:call copper.copper_list_activities '{}' --json kosmo integrations:copper copper_list_activities '{}' --json copper.copper_get_activity
Get an activity by ID.
read - Parameters
- none
kosmo integrations:call copper.copper_get_activity '{}' --json kosmo integrations:copper copper_get_activity '{}' --json copper.copper_create_activity
Create an activity.
write - Parameters
- none
kosmo integrations:call copper.copper_create_activity '{}' --json kosmo integrations:copper copper_create_activity '{}' --json copper.copper_update_activity
Update an activity.
write - Parameters
- none
kosmo integrations:call copper.copper_update_activity '{}' --json kosmo integrations:copper copper_update_activity '{}' --json copper.copper_delete_activity
Delete an activity.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_activity '{}' --json kosmo integrations:copper copper_delete_activity '{}' --json copper.copper_list_activity_types
List activity types.
read - Parameters
- none
kosmo integrations:call copper.copper_list_activity_types '{}' --json 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 - Parameters
- none
kosmo integrations:call copper.copper_get_current_user '{}' --json kosmo integrations:copper copper_get_current_user '{}' --json copper.copper_list_users
Search and list users.
read - Parameters
- none
kosmo integrations:call copper.copper_list_users '{}' --json kosmo integrations:copper copper_list_users '{}' --json copper.copper_get_user
Get a user by ID.
read - Parameters
- none
kosmo integrations:call copper.copper_get_user '{}' --json kosmo integrations:copper copper_get_user '{}' --json copper.copper_get_account_details
Get account details.
read - Parameters
- none
kosmo integrations:call copper.copper_get_account_details '{}' --json 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 - Parameters
- none
kosmo integrations:call copper.copper_list_pipelines '{}' --json kosmo integrations:copper copper_list_pipelines '{}' --json copper.copper_list_pipeline_stages
List pipeline stages.
read - Parameters
- none
kosmo integrations:call copper.copper_list_pipeline_stages '{}' --json kosmo integrations:copper copper_list_pipeline_stages '{}' --json copper.copper_list_pipeline_stages_in_pipeline
List stages in one pipeline.
read - Parameters
- none
kosmo integrations:call copper.copper_list_pipeline_stages_in_pipeline '{}' --json kosmo integrations:copper copper_list_pipeline_stages_in_pipeline '{}' --json copper.copper_list_lead_statuses
List lead statuses.
read - Parameters
- none
kosmo integrations:call copper.copper_list_lead_statuses '{}' --json kosmo integrations:copper copper_list_lead_statuses '{}' --json copper.copper_list_customer_sources
List customer sources.
read - Parameters
- none
kosmo integrations:call copper.copper_list_customer_sources '{}' --json kosmo integrations:copper copper_list_customer_sources '{}' --json copper.copper_list_loss_reasons
List opportunity loss reasons.
read - Parameters
- none
kosmo integrations:call copper.copper_list_loss_reasons '{}' --json kosmo integrations:copper copper_list_loss_reasons '{}' --json copper.copper_list_contact_types
List contact types.
read - Parameters
- none
kosmo integrations:call copper.copper_list_contact_types '{}' --json kosmo integrations:copper copper_list_contact_types '{}' --json copper.copper_list_tags
List tags.
read - Parameters
- none
kosmo integrations:call copper.copper_list_tags '{}' --json kosmo integrations:copper copper_list_tags '{}' --json copper.copper_list_custom_field_definitions
List custom field definitions.
read - Parameters
- none
kosmo integrations:call copper.copper_list_custom_field_definitions '{}' --json kosmo integrations:copper copper_list_custom_field_definitions '{}' --json copper.copper_list_webhooks
List webhook subscriptions.
read - Parameters
- none
kosmo integrations:call copper.copper_list_webhooks '{}' --json kosmo integrations:copper copper_list_webhooks '{}' --json copper.copper_get_webhook
Get a webhook subscription.
read - Parameters
- none
kosmo integrations:call copper.copper_get_webhook '{}' --json kosmo integrations:copper copper_get_webhook '{}' --json copper.copper_create_webhook
Create a webhook subscription.
write - Parameters
- none
kosmo integrations:call copper.copper_create_webhook '{}' --json kosmo integrations:copper copper_create_webhook '{}' --json copper.copper_update_webhook
Update a webhook subscription.
write - Parameters
- none
kosmo integrations:call copper.copper_update_webhook '{}' --json kosmo integrations:copper copper_update_webhook '{}' --json copper.copper_delete_webhook
Delete a webhook subscription.
write - Parameters
- none
kosmo integrations:call copper.copper_delete_webhook '{}' --json 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
kosmo integrations:schema copper.copper_list_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema copper.copper_get_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Copper contact ID. |
copper.copper_get_contact_by_email 0 parameters
kosmo integrations:schema copper.copper_get_contact_by_email --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_contact 2 parameters
kosmo integrations:schema copper.copper_create_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | Full name of the contact. |
email | string | no | Email address of the contact. |
copper.copper_update_contact 3 parameters
kosmo integrations:schema copper.copper_update_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema copper.copper_delete_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Copper contact ID to delete. |
copper.copper_list_companies 2 parameters
kosmo integrations:schema copper.copper_list_companies --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema copper.copper_get_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Copper company ID. |
copper.copper_create_company 1 parameters
kosmo integrations:schema copper.copper_create_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | Company name. |
copper.copper_update_company 0 parameters
kosmo integrations:schema copper.copper_update_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_company 0 parameters
kosmo integrations:schema copper.copper_delete_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_opportunities 2 parameters
kosmo integrations:schema copper.copper_list_opportunities --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema copper.copper_get_opportunity --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Copper opportunity ID. |
copper.copper_create_opportunity 2 parameters
kosmo integrations:schema copper.copper_create_opportunity --json | Parameter | Type | Required | Description |
|---|---|---|---|
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
kosmo integrations:schema copper.copper_update_opportunity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_opportunity 0 parameters
kosmo integrations:schema copper.copper_delete_opportunity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_leads 0 parameters
kosmo integrations:schema copper.copper_list_leads --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_lead 0 parameters
kosmo integrations:schema copper.copper_get_lead --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_lead 0 parameters
kosmo integrations:schema copper.copper_create_lead --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_update_lead 0 parameters
kosmo integrations:schema copper.copper_update_lead --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_lead 0 parameters
kosmo integrations:schema copper.copper_delete_lead --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_projects 0 parameters
kosmo integrations:schema copper.copper_list_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_project 0 parameters
kosmo integrations:schema copper.copper_get_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_project 0 parameters
kosmo integrations:schema copper.copper_create_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_update_project 0 parameters
kosmo integrations:schema copper.copper_update_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_project 0 parameters
kosmo integrations:schema copper.copper_delete_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_tasks 0 parameters
kosmo integrations:schema copper.copper_list_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_task 0 parameters
kosmo integrations:schema copper.copper_get_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_task 0 parameters
kosmo integrations:schema copper.copper_create_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_update_task 0 parameters
kosmo integrations:schema copper.copper_update_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_task 0 parameters
kosmo integrations:schema copper.copper_delete_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_activities 0 parameters
kosmo integrations:schema copper.copper_list_activities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_activity 0 parameters
kosmo integrations:schema copper.copper_get_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_activity 0 parameters
kosmo integrations:schema copper.copper_create_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_update_activity 0 parameters
kosmo integrations:schema copper.copper_update_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_activity 0 parameters
kosmo integrations:schema copper.copper_delete_activity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_activity_types 0 parameters
kosmo integrations:schema copper.copper_list_activity_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_current_user 0 parameters
kosmo integrations:schema copper.copper_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_users 0 parameters
kosmo integrations:schema copper.copper_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_user 0 parameters
kosmo integrations:schema copper.copper_get_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_account_details 0 parameters
kosmo integrations:schema copper.copper_get_account_details --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_pipelines 0 parameters
kosmo integrations:schema copper.copper_list_pipelines --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_pipeline_stages 0 parameters
kosmo integrations:schema copper.copper_list_pipeline_stages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_pipeline_stages_in_pipeline 0 parameters
kosmo integrations:schema copper.copper_list_pipeline_stages_in_pipeline --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_lead_statuses 0 parameters
kosmo integrations:schema copper.copper_list_lead_statuses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_customer_sources 0 parameters
kosmo integrations:schema copper.copper_list_customer_sources --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_loss_reasons 0 parameters
kosmo integrations:schema copper.copper_list_loss_reasons --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_contact_types 0 parameters
kosmo integrations:schema copper.copper_list_contact_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_tags 0 parameters
kosmo integrations:schema copper.copper_list_tags --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_custom_field_definitions 0 parameters
kosmo integrations:schema copper.copper_list_custom_field_definitions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_list_webhooks 0 parameters
kosmo integrations:schema copper.copper_list_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_get_webhook 0 parameters
kosmo integrations:schema copper.copper_get_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_create_webhook 0 parameters
kosmo integrations:schema copper.copper_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_update_webhook 0 parameters
kosmo integrations:schema copper.copper_update_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copper.copper_delete_webhook 0 parameters
kosmo integrations:schema copper.copper_delete_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.