{
"userId": "test-001",
"email": "player1@test.com",
"pspType": "TRUST",
"type": "PAYOUT",
"baseamount": 100,
"currency": "EUR",
"merchantReference": "PAYIN-001",
"card": {
"pan": "4111111111111111",
"expiry": {
"month": "12",
"year": "2030"
},
"cardHolderName": "Alex Smith"
}
}curl --location 'https://backend.app.mozarto.io/v1/api/mozarto/cashier' \
--header 'Authorization: Bearer {{BRAND_TOKEN}}' \
--header 'x-user-token: Bearer {{USER_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "test-001",
"email": "player1@test.com",
"pspType": "TRUST",
"type": "PAYOUT",
"baseamount": 100,
"currency": "EUR",
"merchantReference": "PAYIN-001",
"card": {
"pan": "4111111111111111",
"expiry": {
"month": "12",
"year": "2030"
},
"cardHolderName": "Alex Smith"
}
}'{
"status": "success",
"message": "Withdraw request successfully processed",
"isSuccess": true,
"data": {
"transactionId": "6a7030a0708e7c2f75eea5f2",
"psp_transaction_id": "57-9-5031945",
"merchantReference": "PAYIN-001",
"amount": 100,
"transaction_status": "Approved"
}
}