Skip to main content

Payouts to Russia

For payouts to Russian cards, it is mandatory to provide the recipient's full name, exactly as it is stated in their passport: not a made-up name, not a random sequence of characters, not just the name printed on the recipient's card (cardholder name). You can write it in the Cyrillic or Latin alphabet, whichever you prefer.

Payout parameters when you make a payout using our widget

NameTypeMandatoryDescription
payment_methodPaymentMethod+Payout data
 typestring+Value: card
 cardCardPaymentMethod+Bank card payment details
  typestring+Value: encrypted_card
  encrypted_cardEncryptedCard+Encrypted card details
   number_hashstring+Card number hash
amount_detailsAmountDetails+Amount
 amountint+Amount in ruble decimal format. The value must be greater than zero. If you are sending 100 rubles, you will need to specify 10000
 currencystring+Currency code according to ISO 4217. Case insensitive. Always: rub
participant_detailsParticipantDetails+Information on the payout participants
 recipientParticipant+Recipient details
  full_namestring+Recipient's name (as it appears in the passport)

Payout parameters when you make a payout without our widget

NameTypeMandatoryDescription
payment_methodPaymentMethod+Payout details (card, bank account etc.)
 typestring+Value: card
 cardCardPaymentMethod+Bank card payment details
  typestring+Value: bank_card
  bank_cardBankCard+Unencrypted card details
   numberstring+Card number
amount_detailsAmountDetails+Amount
 amountint+Amount in ruble in decimal format. The value must be greater than zero. If you are sending 100 rubles, you need to specify 10000
 currencystring+Currency code according to ISO 4217. Case insensitive. Always: rub
participant_detailsParticipantDetails+Information on the payout participants
 recipientParticipant+Recipient details
  full_namestring+Recipient's name (as it appears in the passport)

Example

curl -X POST \
https://demo.smart-glocal.com/api/v1/session/start/payout \
-H 'Content-Type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'X-PARTNER-SIGN: signature' \
-d'{
"session_id": "ps_1053680",
"amount_details": {
"amount": "10000",
"currency": "rub"
},
"participant_details": {
"recipient": {
"full_name": "John Johnson"
}
},
"payment_method": {
"card": {
"bank_card": {
"number": "4242424242424242"
},
"type": "bank_card"
},
"type": "card"
}
}'