Delete a price list
Deletes the list; its entries purge in the background rather than inline, so a list holding thousands of prices deletes without hitting a write limit.
An event that loses its price list falls back to default rates silently, so this refuses with
409 price_list_in_use:<count> while any event points at the list as its flower, materials or hire list.
?force=true deletes it anyway.
DELETE
/api/v1/price-lists/{id}Authorization
AuthorizationBearer token (bloomcount_...) · headerrequiredPath parameters
idstringrequiredQuery parameters
forcebooleanDelete even when the cascade reaches beyond this resource.
default: false
Responses
200Deleted
deletedbooleanrequired401Missing or invalid API key, or revoked / expired.
errorstringrequired403Authenticated, but the key lacks the required scope or the tenant has no API access.
errorstringrequired404The requested resource doesn't exist or belongs to a different tenant.
errorstringrequired409The resource is still referenced, and deleting it would take other rows with it. The error names what and how
many, for example price_list_in_use:3. Retry with force=true to delete anyway.
errorstringrequired422Request body or arguments failed validation.
errorstringrequired429Per-minute rate limit (60/min) or per-month cap exceeded.
errorstringrequired