GET api/punters/{punterId}/details/basic

Request Information

URI Parameters

NameDescriptionTypeAdditional information
punterId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.PunterBasicInfoModel
NameDescriptionTypeAdditional information
ResponseObject

BO.Models.Punter.PunterBasicInfoModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "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-15T12:00:31.1598579+02:00",
    "branchId": 8,
    "countryId": 9
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfPunterBasicInfoModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <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-15T12:00:31.1598579+02:00</DateOfBirth>
    <BranchId>8</BranchId>
    <CountryId>9</CountryId>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfPunterBasicInfoModel>