PaymentMethodDetailsDto
Contains detailed information about a payment method. DISCLAIMER: These fields are not guaranteed to be backwards compatible and may change or be removed without notice.
alipayAlipayDetailsDtoOptionalAlipay payment method details
buyer_idstringOptional
The Alipay buyer identifier
fingerprintstringOptional
A unique fingerprint for this Alipay account
bancontactBancontactDetailsDtoOptionalBancontact payment method details
bankstringOptional
The bank identifier
bank_namestringOptional
The bank name
bicstringOptional
The Bank Identifier Code
iban_last4stringOptional
The last 4 digits of the IBAN
payer_namestringOptional
The payer name
cardCardDetailsDtoOptionalCard payment method details
brandstringRequired
The card brand
countrystringRequired
The country code where the card was issued
exp_monthintegerRequired
The card expiration month
exp_yearintegerRequired
The card expiration year
fingerprintstringRequired
A unique fingerprint for this card
fundingstringRequired
The card funding type
last4stringRequired
The last 4 digits of the card number
binstringOptional
The Bank Identification Number (first 6/8 digits of card).
Only available internally.
brand_productstringOptional
The card product code.
Only available internally.
descriptionstringOptional
The card description.
Only available internally.
issuerstringOptional
The card issuer/bank name.
Only available internally.
walletCardWalletDtoOptionalDigital wallet details for a card
typestringRequired
The type of digital wallet
cashappCashAppDetailsDtoOptionalCash App payment method details
buyer_idstringRequired
The Cash App buyer identifier
cashtagstringRequired
The Cash App cashtag
cryptoCryptoDetailsDtoOptionalCryptocurrency payment method details
confirmationsintegerRequired
The number of blockchain confirmations
crypto_amountstringRequired
The amount in cryptocurrency
crypto_currencystringRequired
The cryptocurrency used
total_paidstringRequired
The total amount paid in cryptocurrency
transaction_hashesstring[]Required
A list of blockchain transactions involving this payment
idealIdealDetailsDtoOptionaliDEAL payment method details
bankstringRequired
The bank identifier
bicstringRequired
The Bank Identifier Code
iban_last4stringOptional
The last 4 digits of the IBAN
payer_namestringOptional
The payer name
klarnaKlarnaDetailsDtoOptionalKlarna payment method details
countrystringOptional
The country code
method_categorystringOptional
The Klarna payment method category
linkLinkDetailsDtoOptionalLink payment method details
emailstringRequired
The email associated with the Link account
p24P24DetailsDtoOptionalPrzelewy24 payment method details
bankstringRequired
The bank identifier
payer_namestringOptional
The payer name
pay_by_bankPayByBankDetailsDtoOptionalPay by Bank payment method details
bank_namestringOptional
The bank name
bicstringOptional
The Bank Identifier Code
countrystringOptional
The country code
payer_namestringOptional
The payer name
paypalPayPalDetailsDtoOptionalPayPal payment method details
countrystringRequired
The country code of the PayPal account
payer_emailstringRequired
The PayPal account email
payer_idstringRequired
The PayPal payer identifier
payer_namestringRequired
The PayPal account holder name
vaultbooleanRequired
Indicates if this PayPal account is vaulted
pending_vault_approvalbooleanOptional
Indicates if vault approval is pending
standalone_setupbooleanOptional
Indicates if this is a standalone setup
paysafecardPaysafeCardDetailsDtoOptionalPaysafecard payment method details
association_idstringOptional
first_namestringOptional
last_namestringOptional
psc_idstringOptional
pixPixDetailsDtoOptionalPix payment method details
bank_account_numberstringOptional
The bank account number
bank_namestringOptional
The bank name
payer_namestringOptional
The payer name
steamskinsSteamSkinsDetailsDtoOptionalSteam Skins payment method details
itemsSteamSkinsInventoryItemDetailsDto[]RequiredThe list of Steam inventory items used for payment
app_idintegerRequired
The Steam app ID
idstringRequired
The unique identifier of the Steam item
namestringRequired
The name of the item
priceintegerRequired
The price of the item in the smallest currency unit
Example
{
"card": {
"brand": "visa",
"country": "US",
"exp_month": 12,
"exp_year": 2028,
"fingerprint": "abc123def456",
"funding": "credit",
"last4": "4242",
"bin": 424242,
"issuer": "Chase Bank",
"description": "Visa Signature",
"brand_product": "F",
"wallet": {
"type": "apple_pay"
}
},
"cashapp": {
"buyer_id": "buyer_abc123",
"cashtag": "$johndoe"
},
"paypal": {
"country": "US",
"payer_email": "[email protected]",
"payer_id": "PAYERID123",
"payer_name": "John Doe",
"vault": true,
"pending_vault_approval": false,
"standalone_setup": false
},
"link": {
"email": "[email protected]"
},
"crypto": {
"confirmations": 6,
"crypto_amount": "0.00150000",
"crypto_currency": "BTC",
"total_paid": "0.00150000",
"transaction_hashes": [
"string"
]
},
"steamskins": {
"items": [
{
"app_id": 730,
"id": "string",
"name": "AK-47 | Redline",
"price": 2500
}
]
},
"ideal": {
"bank": "abn_amro",
"bic": "ABNANL2A",
"iban_last4": 1234,
"payer_name": "John Doe"
},
"p24": {
"bank": "ing",
"payer_name": "Jan Kowalski"
},
"bancontact": {
"bank": "bnp_paribas",
"bank_name": "BNP Paribas",
"bic": "GEBABEBB",
"iban_last4": 3456,
"payer_name": "Jean Dupont"
},
"klarna": {
"country": "SE",
"method_category": "pay_later"
},
"alipay": {
"buyer_id": "buyer_abc123",
"fingerprint": "fingerprint_xyz789"
},
"pay_by_bank": {
"bank_name": "Chase Bank",
"bic": "CHASUS33",
"country": "US",
"payer_name": "John Smith"
},
"pix": {
"bank_name": "Banco do Brasil",
"bank_account_number": "12345-6",
"payer_name": "João Silva"
},
"paysafecard": {
"first_name": "string",
"last_name": "string",
"psc_id": "string",
"association_id": "string"
}
}