The Payment Method object represents a source for collecting payments in the Tupel system. Payment methods are used to specify how repayments should be collected for loans and other financial transactions.
Attributes
-
uid string
Unique identifier for the payment method. -
entity object
The Entity object representing the organization associated with this payment method. -
type string
The type of payment method. Maximum length: 4 characters. Possible values:SEPA
,BACS
,ACH
,WIRE
,CARD
. -
currency string
Three-letter ISO currency code of the payment method which can be any of the accepted currency codes. Maximum length: 3 characters. Example:USD
. -
last4 string
The last 4 digits of the account number. Default: empty string. -
created_at timestamp
Time at which the payment method was created. -
updated_at timestamp
Time at which the payment method was last updated.
Payment Method Types
Tupel supports the following payment method types:
SEPA
- SEPA Direct DebitBACS
- BACS Direct DebitACH
- ACH Direct DebitWIRE
- Wire TransferCARD
- Credit Card
Security Features
For security, full account numbers are never exposed in the API. Instead:
- The
last4
field provides a masked reference to help identify the account - The payment method type and currency provide additional context
Payment Method Operations
The API provides several endpoints for managing payment methods:
- Get a Specific Payment Method - Retrieve a single payment method by its UID
- List All Payment Methods - Retrieve a paginated list of payment methods with filtering options
For detailed information about these operations, refer to the Payment Methods documentation.