Cancel an on-my-way or a waitlist visit by the given encrypted visit identifier. **Curl example with OAuth authentication:** ```sh root@test:~# curl -X POST "https://api.yelp.com/v3/visits/{VISIT_ID}/cancel" --header 'accept: application/json' --header "Authorization: Bearer ${API_TOKEN}" ``` If the visit is canceled successfully, the client will receive an empty 204 response. **Note:** In order to use this endpoint, the caller should be an onboarded Yelp Waitlist partner
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 | |
34 | |
35 | |