POST
/wallet/transfer
curl \
--request POST 'BASE_URL/wallet/transfer' \
--header "Content-Type: application/json" \
--header "Signature: string" \
--header "Public-Key: string" \
--data '{"amount":42.0,"brandId":"string","currency":"string","playerId":"string","transactionId":"string","type":"deposit"}'
Request examples
# Headers
Signature: string
Public-Key: string
# Payload
{
"amount": 42.0,
"brandId": "string",
"currency": "string",
"playerId": "string",
"transactionId": "string",
"type": "deposit"
}
Response examples (200)
{
"balance": 42.0,
"currency": "string"
}
Response examples (400)
{
"code": "ERROR_UNKNOWN_ERROR",
"description": "string",
"traceId": "string"
}
Response examples (401)
{
"code": "ERROR_INVALID_SIGNATURE",
"description": "string",
"traceId": "string"
}
Response examples (500)
{
"code": "ERROR_UNKNOWN_ERROR",
"description": "string",
"traceId": "string"
}