payments
ChargeOver CLI for Headless Automation
Use the ChargeOver CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 7 read 0 write Bearer token auth
ChargeOver CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The ChargeOver CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# ChargeOver CLI for Headless Automation
kosmokrator integrations:configure chargeover --set access_token="$CHARGEOVER_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call chargeover.chargeover_list_customers '{"limit":1,"page":1,"status":"example_status"}' --json Discovery Before Execution
Agents and scripts can inspect ChargeOver docs and schemas before choosing a function.
kosmo integrations:docs chargeover --json
kosmo integrations:docs chargeover.chargeover_list_customers --json
kosmo integrations:schema chargeover.chargeover_list_customers --json
kosmo integrations:search "ChargeOver" --json
kosmo integrations:list --json Useful ChargeOver CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
chargeover.chargeover_list_customers | Read | limit, page, status | List customers from ChargeOver. Returns customer records with contact details, company info, and account status. Supports pagination and status filtering. |
chargeover.chargeover_get_customer | Read | id | Get detailed information about a specific ChargeOver customer by ID, including contact details, billing address, account balance, and payment methods. |
chargeover.chargeover_list_subscriptions | Read | limit, page, customer_id | List subscriptions from ChargeOver. Returns subscription details including plan, billing cycle, status, and associated customer. Supports filtering by customer. |
chargeover.chargeover_list_invoices | Read | limit, page, status | List invoices from ChargeOver. Returns invoice details including amounts, dates, line items, and payment status. Supports pagination and status filtering. |
chargeover.chargeover_get_invoice | Read | id | Get detailed information about a specific ChargeOver invoice by ID, including line items, totals, tax, applied payments, and invoice URL. |
chargeover.chargeover_list_transactions | Read | limit, page | List transactions (payments) from ChargeOver. Returns payment records including amounts, methods, dates, and associated customers and invoices. |
chargeover.chargeover_get_current_user | Read | none | Get information about the currently authenticated ChargeOver user and account. Useful for verifying connectivity and understanding which account the integration is connected to. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.