GET api/punters/{punterId}/details/account
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.AccountModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.AccountModel |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"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-14T18:05:04.94699+02:00"
}
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfAccountModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<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-14T18:05:04.94699+02:00</SelfExclusionDate>
</RespBetting>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfAccountModel>