Skip to content
Bloomcount API
Esc
navigateopen⌘Jpreview

Delete a venue

Events that pointed at it keep their free-text address and lose the link, so no event loses information a person typed. The response says how many were detached. There is no force: nothing else depends on a venue.

Errors

  • 404 venue_not_found — unknown ID, or one belonging to another tenant.
DELETE/api/v1/venues/{id}
Authorization
AuthorizationBearer token (bloomcount_...) · headerrequired
Path parameters
idstringrequired
Responses
200Deleted
deletedbooleanrequired
detachedEventsintegerrequired
How many events lost their link to this venue.
401Missing or invalid API key, or revoked / expired.
errorstringrequired
403Authenticated, but the key lacks the required scope or the tenant has no API access.
errorstringrequired
404The requested resource doesn't exist or belongs to a different tenant.
errorstringrequired
429Per-minute rate limit (60/min) or per-month cap exceeded.
errorstringrequired
Try it
Server
Authorization
Parameters
Request
curl -X DELETE "https://app.bloomcount.com/api/v1/venues/ven_k2m7p4r9t3v6x1z8b5n0q7w4" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "deleted": true,
  "detachedEvents": 2
}