get https://api.stg.game.topplatform.asia/client/lobby-page
Using this method, an Operator can get Lobby Page URL by sending brand code and group code to this API.
In-case if you need a Lobby Page URL for a specific player, we request you to follow the Get Lobby Page URL for One Player API Page.
Link - https://docs.nagagames.com/reference/get-lobby-page-url-for-one-player
Request
API URL : {NagaGamesAPIDomain}/client/lobby-page
HTTP Method : GET
URL Parameters
| Parameter Name | Description | Data Type | Required | 
|---|---|---|---|
| brandCode | Auto-generated code of the brand in Naga Games’s database | String | Yes | 
| groupCode | Auto-generated code of the group in Naga Games’s database | String | Yes | 
Example
curl --request GET \
     --url 'https://api.stg.game.topplatform.asia/client/lobby-page?brandCode=dtdr&groupCode=dpae' \
     --header 'accept: application/json'Response
Response Data
| Parameter Name | Description | Data Type | 
|---|---|---|
| url | The url of lobby page | String | 
Example
Success Response Example (HTTP status code 200)
{
    "url": "https://lobby.stg.game.topplatform.asia/
}Failure Response Example (HTTP status code 400)
{
  "message": "Brand Not Found",
  "code": 1201,
  "timestamp": "2023-07-24T12:49:20.684Z"
}