Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE https://api.voyantcloud.com/v1/bookings/bkg_456def \ -H "Authorization: Bearer YOUR_API_KEY"
await fetch("https://api.voyantcloud.com/v1/bookings/bkg_456def", { method: "DELETE", headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` }, })
import os, requests requests.delete( "https://api.voyantcloud.com/v1/bookings/bkg_456def", headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"}, )
{ "ok": true }
Cancel a booking.
DELETE
/v1/bookings/:id
Authorization: Bearer YOUR_API_KEY