POST api/xpress/getLauncher

Request Information

URI Parameters

None.

Body Parameters

BO.Xpress.GameLauncherRequest
NameDescriptionTypeAdditional information
GameId

integer

None.

Username

string

None.

Name

string

None.

Mode

integer

None.

Language

string

None.

Group

string

None.

ClientPlatform

string

None.

AccessToken

string

None.

CashierUrl

string

None.

TokenExpiryDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "gameId": 1,
  "username": "sample string 2",
  "name": "sample string 3",
  "mode": 4,
  "language": "sample string 5",
  "group": "sample string 6",
  "clientPlatform": "sample string 7",
  "accessToken": "sample string 8",
  "cashierUrl": "sample string 9",
  "tokenExpiryDate": "2025-12-14T18:06:01.8609132+02:00"
}

application/xml, text/xml

Sample:
<GameLauncherRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <GameId>1</GameId>
  <Username>sample string 2</Username>
  <Name>sample string 3</Name>
  <Mode>4</Mode>
  <Language>sample string 5</Language>
  <Group>sample string 6</Group>
  <ClientPlatform>sample string 7</ClientPlatform>
  <AccessToken>sample string 8</AccessToken>
  <CashierUrl>sample string 9</CashierUrl>
  <TokenExpiryDate>2025-12-14T18:06:01.8609132+02:00</TokenExpiryDate>
</GameLauncherRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.Xpress.Response.GameLaunchUrl
NameDescriptionTypeAdditional information
ResponseObject

BO.Xpress.Response.GameLaunchUrl

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "status": true,
    "success": "sample string 2",
    "data": "sample string 3"
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfGameLaunchUrl xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <status>true</status>
    <success>sample string 2</success>
    <data>sample string 3</data>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfGameLaunchUrl>