Loading...
Loading...
Chargebee integration. Manage Customers. Use when the user wants to interact with Chargebee data.
npx skill4agent add membranedev/application-skills chargebeemembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search chargebee --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Customers | list-customers | List all customers in Chargebee with optional filtering |
| List Subscriptions | list-subscriptions | List all subscriptions in Chargebee with optional filtering |
| List Invoices | list-invoices | List all invoices in Chargebee with optional filtering |
| List Item Prices | list-item-prices | List all item prices in Chargebee with optional filtering |
| Get Customer | get-customer | Retrieve a customer by ID from Chargebee |
| Get Subscription | get-subscription | Retrieve a subscription by ID from Chargebee |
| Get Invoice | get-invoice | Retrieve an invoice by ID from Chargebee |
| Get Item Price | get-item-price | Retrieve an item price by ID from Chargebee |
| Create Customer | create-customer | Create a new customer in Chargebee |
| Create Subscription | create-subscription | Create a new subscription for a customer in Chargebee |
| Create Item Price | create-item-price | Create a new item price in Chargebee |
| Update Customer | update-customer | Update an existing customer in Chargebee |
| Update Subscription | update-subscription | Update an existing subscription in Chargebee |
| Update Item Price | update-item-price | Update an existing item price in Chargebee |
| Cancel Subscription | cancel-subscription | Cancel a subscription in Chargebee |
| Delete Customer | delete-customer | Delete a customer from Chargebee |
| Refund Invoice | refund-invoice | Refund an invoice in Chargebee |
| Void Invoice | void-invoice | Void an invoice in Chargebee |
| Pause Subscription | pause-subscription | Pause a subscription in Chargebee |
| Reactivate Subscription | reactivate-subscription | Reactivate a cancelled subscription in Chargebee |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY