Skip to content

Chargebee

Node: chargebee · Full type: n8n-nodes-base.chargebee · Version: 1

Credentials

chargebeeApi (alias: @chargebee)

CREDENTIAL @chargebee = chargebeeApi "My Chargebee"

Operations

Resource: customer

create

Parameter Type Default Details
properties collection {} keys: id, first_name, last_name, email, phone, company, ...

Resource: invoice

list

Parameter Type Default Details
maxResults number 10
filters fixedCollection {} groups: date, total

pdfUrl

Parameter Type Default Details
invoiceId string "" required

Resource: subscription

cancel

Parameter Type Default Details
subscriptionId string "" required
endOfTerm boolean false

delete

Parameter Type Default Details
subscriptionId string "" required

Parameter Details

properties children:

Parameter Type Default Details
id string ""
first_name string ""
last_name string ""
email string ""
phone string ""
company string ""
customProperties fixedCollection {} groups: property

filters children:

date group:

Parameter Type Default Details
operation options "after" is, is_not, after, before
value dateTime ""

total group:

Parameter Type Default Details
operation options "gt" gte, gt, is, is_not, lte, lt
value number 0

Example

NODE "chargebee" @chargebee AS "Chargebee" {
  resource: "customer",
  operation: "create",
  invoiceId: {{ $json.invoiceId }},
  subscriptionId: {{ $json.subscriptionId }}
}