POST teesheet/checkin/update
Authorized only.
Request Information
URI Parameters
None.
Body Parameters
UpdateCheckinRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Customers | Collection of UpdateCheckinEntry |
None. |
Request Formats
application/json, text/json
Sample:
{
"Customers": [
{
"TeeTimeId": 1,
"GreenFee": 2.0,
"CartFee": 3.0
},
{
"TeeTimeId": 1,
"GreenFee": 2.0,
"CartFee": 3.0
}
]
}
application/xml, text/xml
Sample:
<UpdateCheckinRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IConnect.Domain.Mobile.Api.Requests.TeeSheet">
<Customers>
<UpdateCheckinEntry>
<CartFee>3</CartFee>
<GreenFee>2</GreenFee>
<TeeTimeId>1</TeeTimeId>
</UpdateCheckinEntry>
<UpdateCheckinEntry>
<CartFee>3</CartFee>
<GreenFee>2</GreenFee>
<TeeTimeId>1</TeeTimeId>
</UpdateCheckinEntry>
</Customers>
</UpdateCheckinRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |