In order to check on the current amount due for a ticket for a parker's vehicle via your app or website, you need to directly integrate into Valet Manager's RateEngine Controller API. This API allows you to query the total to charge for a ticket that will be closed either now or at a specified datetime.
A sample request to check on the rate for an open ticket:
curl -X GET --header 'Accept: application/json' --header 'api_key: apiKey' --header
'Authorization: Bearer <token>' \ 'https://demo.api.valet-manager.com/rateEngine/demo/8d93b9e5-3293-4f5f-8307-584206f057d'
A sample response:
{
...
"rate":0,
"fee":0,
"tax":0,
"total":0,
...
}
