CREATE
Request
POST https://bovatech.cc/v1/mass_transactions
POST https://bovatech.cc/v1/mass_transactionsJSON Request Params
user_uuid*
string
Token that can be obtained in your personal account (Profile → Integration → User ID)
merchant_id*
string
Your transaction number
currency*
string
payment_method*
string
amount*
integer
Amount in the selected currency specified when creating the payout
callback_url*
string
Callback URL for receiving callback notifications. A POST request is sent with retries if a non-200 HTTP status code is returned.
Headers
Content-Type
string
Always application/json
Signature
string
The signature is calculated for each request using the api_key token issued to you.
Example Request:
{
"user_uuid": "364dbfc8-ae50-492f-bdd9-748edd84d5c9",
"amount": 50000,
"callback_url": "https://webhook.site/f3029e33-db04-40fd-a81e-5cea9a69fc80",
"merchant_id": "40fd-a81e-f3029e33-5cea9a69fc80",
"payment_method": "imps",
"currency": "uzs"
}JSON Response Params:
id
string
Transaction ID on the BOVA side
merchant_id
string
Your transaction number
state
string
Transaction status
created_at
string
Transaction creation date
updated_at
string
Last transaction update date
currency
string
Transaction currency
callback_url
string
Callback URL for receiving callback notifications
amount
decimal
Transaction amount in USDT after conversion at the exchange rate
fiat_amount
decimal
Amount in the selected currency specified when creating the payout
old_fiat_amount
decimal
Amount in the selected currency specified when creating the payout (immutable)
rate
decimal
Conversion rate currency/USDT
commission_type
string
relative – percentage
fixed – fixed amount of USDT
service_commission
decimal
Your commission percentage
total_amount
decimal
Amount to be credited to the balance after deducting the system commission upon transaction completion
payment_method
string
Payment method
form_url
string
Link on form
Example Response:
State description:
created
internal
Payout created, awaiting processing start
processing
internal
Payout is being processed, awaiting finalization
paid
final
Payout completed
failed
final
Payout failed
Last updated