将玩家余额从 VegasLounge 钱包转出的接口。 Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:Authorization: Basic *****************
Body Params application/json
{
"playerId": "ac53fdg",
"txId": "dc4adb70-e029-460a-8681-be72e720f64f",
"amount": 100.43,
"currency": "USD"
}
Request samples
curl --location --request POST '/operator/withdrawal?clientId=' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"playerId": "ac53fdg",
"txId": "dc4adb70-e029-460a-8681-be72e720f64f",
"amount": 100.43,
"currency": "USD"
}'
Responses
application/json Modified at 2024-07-20 11:31:07