Use the ChargeOver CLI from KosmoKrator to call ChargeOver tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
ChargeOver can be configured headlessly with `kosmokrator integrations:configure chargeover`.
# 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 chargeover --set access_token="$CHARGEOVER_ACCESS_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor chargeover --jsonkosmokrator integrations:status --json
Credentials
Authentication type: Bearer tokenbearer_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
access_token
CHARGEOVER_ACCESS_TOKEN
Secret secret
yes
Access Token
subdomain
CHARGEOVER_SUBDOMAIN
Text string
no
Subdomain
url
CHARGEOVER_URL
URL url
no
Custom URL
Call ChargeOver Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to ChargeOver.
chargeover.chargeover_list_customers
Read read
List customers from ChargeOver. Returns customer records with contact details, company info, and account status. Supports pagination and status filtering.
List subscriptions from ChargeOver. Returns subscription details including plan, billing cycle, status, and associated customer. Supports filtering by customer.
List invoices from ChargeOver. Returns invoice details including amounts, dates, line items, and payment status. Supports pagination and status filtering.
Get information about the currently authenticated ChargeOver user and account. Useful for verifying connectivity and understanding which account the integration is connected to.
Use these parameter tables when building CLI payloads without calling integrations:schema first.
chargeover.chargeover_list_customers
List customers from ChargeOver. Returns customer records with contact details, company info, and account status. Supports pagination and status filtering.
List subscriptions from ChargeOver. Returns subscription details including plan, billing cycle, status, and associated customer. Supports filtering by customer.
Number of subscriptions to return per page (default: 10, max: 500).
page
integer
no
Page number for pagination (1-based, default: 1).
customer_id
integer
no
Filter subscriptions by customer ID.
chargeover.chargeover_list_invoices
List invoices from ChargeOver. Returns invoice details including amounts, dates, line items, and payment status. Supports pagination and status filtering.
Number of transactions to return per page (default: 10, max: 500).
page
integer
no
Page number for pagination (1-based, default: 1).
chargeover.chargeover_get_current_user
Get information about the currently authenticated ChargeOver user and account. Useful for verifying connectivity and understanding which account the integration is connected to.
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.