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.4,
"currency": "USD"
}
Request samples
curl --location -g --request POST '/operator/deposit?clientId={{clientid}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"playerId": "ac53fdg",
"txId": "dc4adb70-e029-460a-8681-be72e720f64f",
"amount": 100.4,
"currency": "USD"
}'
Responses
application/json Modified at 2024-09-14 18:01:59