POST api/CalculatePayAndDisplayRate
POST implementation of CalculatePayAndDisplayRate
Request Information
URI Parameters
None.
Body Parameters
CalculatePayAndDisplayRateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey | string |
None. |
|
| FacilityNo | integer |
None. |
|
| TicketNo | string |
None. |
|
| TicketType | unsigned integer |
None. |
|
| TargetRateEndTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"APIKey": "sample string 1",
"FacilityNo": 2,
"TicketNo": "sample string 3",
"TicketType": 4,
"TargetRateEndTime": "2026-02-03T07:26:35.4862173+00:00"
}
Response Information
Resource Description
CalculatePayAndDisplayRateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityNo | integer |
None. |
|
| CarparkNo | integer |
None. |
|
| TicketNo | string |
None. |
|
| TicketType | unsigned integer |
None. |
|
| Price | decimal number |
None. |
|
| RateNo | unsigned integer |
None. |
|
| TargetRateEndTime | date |
None. |
|
| ActualRateEndTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"FacilityNo": 1,
"CarparkNo": 2,
"TicketNo": "sample string 3",
"TicketType": 4,
"Price": 5.1,
"RateNo": 6,
"TargetRateEndTime": "2026-02-03T07:26:35.4862173+00:00",
"ActualRateEndTime": "2026-02-03T07:26:35.4862173+00:00"
}