POST api/punters/CheckIfPunterExists
Request Information
URI Parameters
None.
Body Parameters
BO.BETRequestObjects.Punter.CheckPunterExistsRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Passport | string |
None. |
|
| IdentityNumber | string |
None. |
|
| Cell | string |
None. |
|
| FK_IdentityTypeID | string |
None. |
|
| IdentityTypeValue | string |
None. |
|
| DateOfBirth | date |
None. |
|
| Gender | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"passport": "sample string 1",
"identityNumber": "sample string 2",
"cell": "sample string 3",
"fK_IdentityTypeID": "sample string 4",
"identityTypeValue": "sample string 5",
"dateOfBirth": "2025-12-15T12:00:31.7699297+02:00",
"gender": "sample string 7",
"firstName": "sample string 8",
"lastName": "sample string 9"
}
application/xml, text/xml
Sample:
<CheckPunterExistsRequestFilter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Passport>sample string 1</Passport> <IdentityNumber>sample string 2</IdentityNumber> <Cell>sample string 3</Cell> <FK_IdentityTypeID>sample string 4</FK_IdentityTypeID> <IdentityTypeValue>sample string 5</IdentityTypeValue> <DateOfBirth>2025-12-15T12:00:31.7699297+02:00</DateOfBirth> <Gender>sample string 7</Gender> <FirstName>sample string 8</FirstName> <LastName>sample string 9</LastName> </CheckPunterExistsRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.BETResponseObjects.Punter.PunterExistsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.BETResponseObjects.Punter.PunterExistsModel |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"exists": true,
"requiresOTPVerification": true
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfPunterExistsModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<Exists>true</Exists>
<RequiresOTPVerification>true</RequiresOTPVerification>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfPunterExistsModel>