OpenAPI 3.1.0raw.githubusercontent.com2026-08-191,3412,1385.0 MB

ec31f78cf002

sql databases

Delete a SQL database

Deletes a SQL database and all of the data it holds. Deletion is asynchronous and returns 202 with an empty body — the record is not removed synchronously. Poll GET /storage/sqldbs/{id}, which returns 404 once the database has been purged; there is no durable deleted state. A database still bound by a function is refused with 409 unless force=true.

delete/storage/sqldbs/{id}

Path parameters

idstring uuid required

SQL database ID

Query parameters

forceboolean

Delete the database even when functions still bind it. Their bindings stop resolving.

Response

Accepted — deletion runs asynchronously. The body is empty; poll GET /storage/sqldbs/{id} until it returns 404.