Customer Object

{
  "id": "cus_4xKp2BanKWYnR7m",
  "object": "customer",
  "address": {
    "city": "Santiago",
    "country": "cl",
    "line1": "Av. Providencia 1234",
    "line2": "Oficina 501",
    "postal_code": "7500000",
    "state": "RM"
  },
  "created_at": "2026-03-26T20:15:30Z",
  "email": "[email protected]",
  "metadata": {},
  "mode": "live",
  "name": "Acme Corp",
  "phone": "+56912345678",
  "tax_id": "12345678-9",
  "tax_id_type": "cl_rut"
}
AttributeTypeDescription
idstringUnique identifier for the customer. Prefixed with cus_.
objectstringObject type. Always customer.
addressobjectCustomer's address.
address.citystringCity of the customer
address.countrystringTwo-letter country code (ISO 3166-1 alpha-2). Normalized to lowercase.
address.line1stringPrimary address line of the customer
address.line2stringSecondary address line (e.g. apartment, suite).
address.postal_codestringPostal or ZIP code of the customer
address.statestringState or region of the customer
created_atstringISO 8601 datetime of when the customer was created.
created_atstringISO 8601 datetime of when the customer was updated.
emailstringCustomer's email address. Normalized to lowercase. At least one of email or tax_id is required.
metadataobjectSet of key-value pairs for storing additional information.
modestringEither live or test.
namestringCustomer's full name or business name.
phonestringCustomer's phone number.
tax_idobjetoTax identifier (e.g. RUT, RFC). At least one of tax_id or email is required.
tax_id.typestringType of tax identifier. Required if tax_id is provided. Possible values include cl_rut, mx_rfc.
tax_id.valuestringValuer of the tax ID.