Online Player Info
This method returns data about an online player. use gateway.[msdomain]
Request (GET)
/gateway/online-player/{version}/{brand_id}/player/info
Parameters:
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| version | path | string | true | The API version to use. |
| brand_id | path | string | true | The ID of the casino. If a brand_id is not provided, all message formats will be fetched from default storage. |
| x-auth-token | header | string | true | Player login session. |
Response
Status 200
{
"playerID": {
"username": "itamar1",
"ID": 33003139,
"brand": 1
},
"firstName": "nadya",
"lastName": "mag",
"gender": "F",
"email": "itamar1@me.com",
"vip_level": 1,
"country": "IT",
"test_account": 0,
"currencyName": "EUR",
"currencySymbol": "€",
"bTag": "PQ4YXsO2q5kWqcfzu"
}Status 400
{
"errMsg": "invalid input - invalid brand id"
}401 Response, in case of some addition requirement needed before proceeding
| Error Code | Description |
|---|---|
| INCOMPLETE_REGISTRATION | The player did not complete his registration process, need to complete Registration Step Two. |
| TNC_APPROVAL_REQUIRED | Player need to approve TnC. |
| PRIVACY_APPROVAL_REQUIRED | Player need to approve Privacy Policy. |
| PASSWORD_CHANGE_REQUIRED | Player has temp password and need to Change Password. |
| EMAIL_NOT_VERIFIED | Player email is not verified and cannot continue any process till he verifies his mail. |
{
"result": "INCOMPLETE_REGISTRATION"
}401 Response
{
"errMsg": "invalid input - invalid token"
}Status 500
{
"result": "internal server error"
}Response Parameters:
| Name | Description |
|---|---|
| playerID.ID | player unique ID in system. |