POST api/punters/sessiontime
Request Information
URI Parameters
None.
Body Parameters
BO.BETRequestObjects.Punter.PunterSessionTimeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PunterId | integer |
None. |
|
| PunterName | string |
None. |
|
| TimeIn | date |
None. |
|
| TimeOut | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"punterId": 1,
"punterName": "sample string 2",
"timeIn": "2025-12-15T11:54:26.8058088+02:00",
"timeOut": "2025-12-15T11:54:26.8058088+02:00"
}
application/xml, text/xml
Sample:
<PunterSessionTimeRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PunterId>1</PunterId> <PunterName>sample string 2</PunterName> <TimeIn>2025-12-15T11:54:26.8058088+02:00</TimeIn> <TimeOut>2025-12-15T11:54:26.8058088+02:00</TimeOut> </PunterSessionTimeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.MetaData.Client.PunterSessionTimeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.MetaData.Client.PunterSessionTimeResponse |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"responseObject": {
"punterId": 1,
"punterName": "sample string 2",
"timeIn": "2025-12-15T11:54:26.8058088+02:00",
"timeOut": "2025-12-15T11:54:26.8058088+02:00"
},
"responseType": 1,
"responseMessage": "sample string 2"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfPunterSessionTimeResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<ResponseObject>
<PunterId>1</PunterId>
<PunterName>sample string 2</PunterName>
<TimeIn>2025-12-15T11:54:26.8058088+02:00</TimeIn>
<TimeOut>2025-12-15T11:54:26.8058088+02:00</TimeOut>
</ResponseObject>
<ResponseType>1</ResponseType>
<ResponseMessage>sample string 2</ResponseMessage>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfPunterSessionTimeResponse>