To make a payout to a Paysafecard account, make a /storeDetailAndSubmitThirdParty call, including:
selectedBrand
: paysafecardemailId
: the email used for the Paysafecard account of the recipientshopperName
dateOfBirth
For a list of supported countries for payouts to Paysafecard accounts, refer to Third-party payouts.
{
"amount":{
"currency":"EUR",
"value":1000
},
"selectedBrand":"paysafecard",
"additionalData":{
"emailId":"EmailUsedForPaysafecardAccount@example.com"
},
"shopperName":{
"firstName":"Test",
"gender":"MALE",
"lastName":"Test2"
},
"dateOfBirth":"1982-07-17",
"entityType":"NaturalPerson",
"nationality":"NL",
"merchantAccount":"YOUR_MERCHANT_ACCOUNT",
"recurring":{
"contract":"PAYOUT"
},
"reference":"Test Payout",
"shopperEmail":"test@company.com",
"shopperReference":"YOUR_UNIQUE_SHOPPER_ID_IOfW3k9G2PvXFu2j",
"shopperIP":"61.294.12.12"
}
The response will contain a pspReference
and a resultCode
.
{
"pspReference" : "9913134956610005",
"resultCode" : "[payout-submit-received]"
}