Member Login
1. Member Login
API Path
- POST
- /api/member/login
Request Parameters
Parameter | Name | Type | Required | Signed | Description |
---|---|---|---|---|---|
agent_id | Merchant ID | string | Required | Included | Merchant ID |
user_id | Merchant User ID | string | Required | Included | Merchant User ID |
token | User Session Token | string | Required | Included | Token generated randomly by the merchant, the string length must be greater than 8 and less than 32 |
platform | Platform | string | Required | Included | ios/android/h5/web |
language | Language | string | Required | Included | Language |
currency | Currency | string | Required | Included | Currency |
timestamp | Current Timestamp | int | Required | Included | Timestamp when calling the API (in milliseconds, valid for ten minutes) |
game_code | game code | string | optional | Included | redirect to the room after member login |
callback | Callback URL | string | Optional | Excluded | URL called when returning from the room |
limits | Bet Limits | dict | Optional | Excluded | In dict format, where the key is <Currency>_<GameID> and the value is a comma-separated string of ordered betLimit IDs. |
sign | Signature | string | Required | Excluded | See API documentation for signature algorithm |
Response Parameters
Parameter | Name | Type | Description |
---|---|---|---|
code | Response Code | int | Error Code |
message | Response Message | string | Error Message |
data | Response Data | dict | Response Data Details |
--url | Game Lobby URL | string | After successful login, the merchant app redirects to this URL to enter the game lobby |
--token | User Session Token | string | User 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¤cy=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