curl --request POST \
--url https://example.com/api/v1/integration/merch-deposit-order \
--header 'Authorization: Bearer Your Token \
--header 'Content-Type: application/json' \
--data '{
"amount": 100,
"currency": "RUB",
"externalTransactionId": "test01",
"bankName":"ANY",
"paymentDetails": {
"cardNumber": "111111111111111111"
},
"resultRedirect": {
"successUrl": "https://example.com/success",
"failUrl": "https://example.com/failed",
"processingUrl": "https://example.com/processing"
}
}'