Payment Method Object

{
  "id": "pm_4324qwkalsds",
  "object": "payment_method",
  "created_at": "2025-07-01T10:00:00.000Z",
  "customer": "cus_456789abcdef",
  "mode": "live",
  "pac": {
    "account_holder_id": "134910798",
    "account_number": "9530516286",
    "account_type": "checking_account",
		"institution": {
      "id": "cl_banco_santander",
      "name": "Banco Santander",
      "country": "cl" 
    },
    "status": "active"
  },
  "type": "pac",
}

Base object

AttributeTypeDescription
idstringUnique identifier for the Payment Method.
objectstringThe type of the object, always payment_method.
created_atstringISO 8601 creation timestamp.
customerstringCustomer ID associated to this payment method.
modestringlive or test
pacobjectOnly present this is an object of type pac. Contains details specific to a pac payment method.
typestringThe type of the PaymentMethod ob. An additional hash is included on the object with a name matching this value. It contains additional information specific to the PaymentMethod type.

Pac object

AttributeTypeDescription
account_holder_idstringIdentifier of the owner of the account. In Chile, it corresponds to a RUT.
account_numberstringAccount number. Does not include hyphens nor prefixed zeros
account_typestringType of the account
institutionobjectFinancial institution associated with the PAC
statusstringIndicates if the pac is available to be charged (active), waiting confirmation (pending) or no longer available (canceled).