Skip to main content

Member Login

1. Member Login

API Path

  • POST
  • /api/member/login

Request Parameters

ParameterNameTypeRequiredSignedDescription
agent_idMerchant IDstringRequiredIncludedMerchant ID
user_idMerchant User IDstringRequiredIncludedMerchant User ID
tokenUser Session TokenstringRequiredIncludedToken generated randomly by the merchant, the string length must be greater than 8 and less than 32
platformPlatformstringRequiredIncludedios/android/h5/web
languageLanguagestringRequiredIncludedLanguage
currencyCurrencystringRequiredIncludedCurrency
timestampCurrent TimestampintRequiredIncludedTimestamp when calling the API (in milliseconds, valid for ten minutes)
game_codegame codestringoptionalIncludedredirect to the room after member login
callbackCallback URLstringOptionalExcludedURL called when returning from the room
limitsBet LimitsdictOptionalExcludedIn dict format, where the key is <Currency>_<GameID> and the value is a comma-separated string of ordered betLimit IDs.
signSignaturestringRequiredExcludedSee API documentation for signature algorithm

Response Parameters

ParameterNameTypeDescription
codeResponse CodeintError Code
messageResponse MessagestringError Message
dataResponse DatadictResponse Data Details
--urlGame Lobby URLstringAfter successful login, the merchant app redirects to this URL to enter the game lobby
--tokenUser Session TokenstringUser Session Token

Request Example

curl --location 'https://staging.aig1234.com/api/member/login' \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "agent001",
"user_id": "uid001",
"token": "tokena8c2aaef3880162a",
"platform": "h5",
"language": "en-US",
"currency": "VND2",
"timestamp": 1734417873301,
"limits": {
"USD_101": "110101,110102,110103",
"VND_101": "110101,110102,110103",
"USD_102": "110201,110203,110204"
},
"game_code": "101-DYfsRc",
"callback": "https://h5-uat.aig1234.com/home",
"sign": "7776e923ffee88bbd5293fa8ad4a9919"
}'

Response Example

{
"code": 200,
"message": "success",
"data": {
"url": "https://h5-uat.aig1234.com/home?agent_id=agent001&uid=uid001&token=tokena8c2aaef3880162a&language=en-US&platform=h5&currency=VND2?game_code=101-DYfsRc&callback=https://h5-uat.aig1234.com/home",
"token": "tokena8c2aaef3880162a"
}
}

Error Codes

200 Success
408000 Request Parameter Error
408003 Whitelist Restriction
408004 API Rate Limit
600100 Invalid Signature
700101 Merchant Not Found
700103 User Not Found
700106 Login Failed
700108 User Prohibited from Login
700208 Currency Not in Merchant's Selected Currency List
700270 Bet Limits Error