Wallet
Example
// Request
curl --location --request POST 'https://api.topay.mobi/v1/order/pay' \
--header 'Content-Type: application/json' \
--data-raw '{
* "request_id": "custom_code9982674851738108",
"pay_currency": "RUB",
* "currency": "RUB",
* "amount": "150",
* "payment_method": "direct",
* "payment_type": "wallet",
* "payment_channel": "sbp", //sbp or sber_bank
* "product_name": "product info",
* "customer_ref_id": "abcd1234",
"notify_url": "https://notify.url",
"remark": "payout test remark",
}'// Response
{"code":"200",
"data":{
"request_id":"1675157000687",
"partner_id":"2000051",
"order_no":"2023013120000600262092321146",
"currency":"RUB",
"order_amount":"150",
"status":11,
"payment_method":"direct",
"wallet_url":"http://sbp.com/vfsjdkfdst"
},
"message":"success"
}Last updated