Get Deposit Options
GET/v2/customers/:customerId/deposits/options
Returns list of deposit options.
Request
Path Parameters
customerId stringrequired
Customer Id
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- GET_DEPOSIT_OPTIONS
Schema
Array [
-
CARD - Represents CardPaymentOptionSettings
- CARD
]
paymentOption PaymentOptionType (string)
Possible values: [RAPID_TRANSFER
, BANK_TRANSFER
, OFFLINE_BANK_TRANSFER
, CARD
, PAYSAFECASH
, PAGO_EFECTIVO
]
Enumeration of supported Payment Option Types
type ParticipantType (string)
Possible values: [THIRD_PARTY
, FIRST_PARTY
]
Default value: FIRST_PARTY
Participant in the payment.
instrumentTypes InstrumentType (string)[]
Possible values: [SEPA_BANK_ACCOUNT
, UK_BANK_ACCOUNT
, US_BANK_ACCOUNT
, CCI_BANK_ACCOUNT
, CARD
]
Supported instrument types.
paymentOptionSettings
object
deprecated
Provides settings for a specific payment option. Valid payment options are:
paymentOption
string
required
Possible values: [CARD
]
Enumeration of supported Payment Option Types
any
[
{
"paymentOption": "CARD",
"type": "FIRST_PARTY",
"instrumentTypes": [
"CARD"
]
}
]
[
{
"paymentOption": "PAGO_EFECTIVO",
"instrumentTypes": []
},
{
"paymentOption": "BANK_TRANSFER",
"instrumentTypes": [
"US_BANK_ACCOUNT"
]
},
{
"paymentOption": "CARD",
"instrumentTypes": [
"CARD"
],
"paymentOptionSettings": {
"paymentOption": "CARD",
"cardSchemes": [
"VISA",
"MC"
]
}
}
]
Loading...