get https://api.yelp.com/v3/bookings/reservation//status
To check the status of an existing reservation, you can use this endpoint with the reservation ID. This endpoint will return the current status and details of the reservation.
The response will include information such as whether the reservation is still active, the date, time, and number of covers for the reservation.
cURL example with OAuth authentication:
curl -X GET "https://api.yelp.com/v3/bookings/reservation/e33b40ef-f6b1-4f17-987c-d850892564b/status -H "authorization: Bearer {ACCESS_TOKEN}"
Example 200 response:
{
"active": true,
"date": "2017-12-30",
"time": "11:00:00",
"covers": 3
}