GET api/punters/{guid}/puntertoken
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| guid | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.PunterLoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.PunterLoginModel |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"punter": {
"basic": {
"punterId": 1,
"title": "sample string 2",
"initials": "sample string 3",
"firstName": "sample string 4",
"lastName": "sample string 5",
"gender": "sample string 6",
"dateOfBirth": "2025-12-15T11:55:39.8744811+02:00",
"identity": {
"typeId": 1,
"type": "sample string 2",
"value": "sample string 3"
},
"branchId": 1,
"countryId": 1
},
"account": {
"typeId": 1,
"type": "sample string 2",
"creditLimit": 1.0,
"depositLimit": 1.0,
"ficaCompliant": true,
"balance": {
"available": 1.0,
"pending": 2.0
},
"maxLiability": {
"single": 1.0,
"multiple": 1.0,
"open": 1.0
},
"respBetting": {
"depositLimit": 1.0,
"stakeLimit": 1.0,
"selfExclusionDate": "2025-12-15T11:55:39.8744811+02:00"
}
}
},
"accessToken": {
"type": "sample string 1",
"token": "sample string 2",
"expiryDateTimeUTC": "2025-12-15T11:55:39.8744811+02:00"
},
"betGamesAccessToken": "sample string 1",
"requiresPasswordReset": true,
"passwordChangeUrl": "sample string 3"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfPunterLoginModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<Punter>
<Basic>
<PunterId>1</PunterId>
<Title>sample string 2</Title>
<Initials>sample string 3</Initials>
<FirstName>sample string 4</FirstName>
<LastName>sample string 5</LastName>
<Gender>sample string 6</Gender>
<DateOfBirth>2025-12-15T11:55:39.8744811+02:00</DateOfBirth>
<Identity>
<TypeId>1</TypeId>
<Type>sample string 2</Type>
<Value>sample string 3</Value>
</Identity>
<BranchId>1</BranchId>
<CountryId>1</CountryId>
<Cell>sample string 8</Cell>
<Email>sample string 9</Email>
</Basic>
<Account>
<TypeId>1</TypeId>
<Type>sample string 2</Type>
<CreditLimit>1</CreditLimit>
<DepositLimit>1</DepositLimit>
<FicaCompliant>true</FicaCompliant>
<Balance>
<Available>1</Available>
<Pending>2</Pending>
</Balance>
<MaxLiability>
<Single>1</Single>
<Multiple>1</Multiple>
<Open>1</Open>
</MaxLiability>
<RespBetting>
<DepositLimit>1</DepositLimit>
<StakeLimit>1</StakeLimit>
<SelfExclusionDate>2025-12-15T11:55:39.8744811+02:00</SelfExclusionDate>
</RespBetting>
</Account>
</Punter>
<AccessToken>
<Type>sample string 1</Type>
<Token>sample string 2</Token>
<ExpiryDateTimeUTC>2025-12-15T11:55:39.8744811+02:00</ExpiryDateTimeUTC>
</AccessToken>
<BetGamesAccessToken>sample string 1</BetGamesAccessToken>
<RequiresPasswordReset>true</RequiresPasswordReset>
<PasswordChangeUrl>sample string 3</PasswordChangeUrl>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfPunterLoginModel>