POST Casino/GetClientAccoutDetail

GetBetgamesClientAccoutDetail

Request Information

URI Parameters

None.

Body Parameters

ApiClientCountryFilter
NameDescriptionTypeAdditional information
ClientID

Gets or sets the CountryID identifier.

integer

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientID": 1,
  "userID": 2
}

application/xml, text/xml

Sample:
<ApiClientCountryFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <userID>2</userID>
  <ClientID>1</ClientID>
</ApiClientCountryFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiClientAccoutDetailResponse
NameDescriptionTypeAdditional information
ResponseObject

Gets or sets the response object.

ApiClientAccoutDetail

None.

ResponseType

Gets or sets the type of the response.

integer

None.

ResponseMessage

Gets or sets the response message.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseObject": {
    "ClientID": 1,
    "FirstName": "sample string 1",
    "LastName": "sample string 2",
    "Gender": "sample string 3",
    "DateOfBirth": "2025-12-06T06:56:36.7751002+02:00",
    "Currency": "sample string 5",
    "CountryName": "sample string 6",
    "City": "sample string 7",
    "CountryCode": "sample string 8",
    "Balance": 9.0,
    "BonusBalance": 1.0,
    "OperatorCode": 1
  },
  "ResponseType": 1,
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiClientAccoutDetailResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseType>1</ResponseType>
  <ResponseObject>
    <Balance>9</Balance>
    <BonusBalance>1</BonusBalance>
    <City>sample string 7</City>
    <ClientID>1</ClientID>
    <CountryCode>sample string 8</CountryCode>
    <CountryName>sample string 6</CountryName>
    <Currency>sample string 5</Currency>
    <DateOfBirth>2025-12-06T06:56:36.7751002+02:00</DateOfBirth>
    <FirstName>sample string 1</FirstName>
    <Gender>sample string 3</Gender>
    <LastName>sample string 2</LastName>
    <OperatorCode>1</OperatorCode>
  </ResponseObject>
</ApiClientAccoutDetailResponse>