Skip to content
Bloomcount API
Esc
navigateopen⌘Jpreview

Delete an event

Deletes the event and everything belonging to it: its groups, lines, saved versions, rollups and mood-board images. Nothing outside the event references it, so there is no force — the catalogue and price lists it pointed at are untouched.

DELETE/api/v1/events/{id}
Authorization
AuthorizationBearer token (bloomcount_...) · headerrequired
Path parameters
idstringrequired
Responses
200Deleted, with a count of what belonged to it.
deletedbooleanrequired
groupsDeletedintegerrequired
Groups removed with the event.
itemsDeletedintegerrequired
Lines removed with the event.
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
422Request body or arguments failed validation.
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/events/evt_3h1f3x9k4e7p8qpz5t1v0w2y" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "deleted": true,
  "groupsDeleted": 3,
  "itemsDeleted": 24
}