Create player account
创建玩家
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"player_provider_id": 49,
"amount": 0,
"timestamp":"{{timestamp}}"
}
Request Code Samples
curl --location --request POST '/v1/agent/player/create' \
--header 'User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"player_provider_id": 49,
"amount": 0,
"timestamp":"{{timestamp}}"
}'
Responses
application/json {
"status": true,
"message": "Create successfully",
"data": {
"username": "syj2055",
"password": "Cc2211",
"paymentPin": "363158"
}
}
Modified at 2025-12-16 09:17:25