Skip to content

delete_project

Delete a Bridge Town project. Requires Owner role on the project. This permanently removes the project and all its contents. Returns: project (str) — deleted project name; deleted (bool) — always true on success.

destructive

NameTypeRequiredDefaultDescription
project_namestrYes

Returns a structured object. Top-level fields:

  • project (string)
  • deleted (boolean)

See the response example below for the full payload shape.

{
"name": "delete_project",
"arguments": {
"project_name": "forecasts"
}
}
{
"project": "forecasts",
"deleted": true
}
  • Module: Projects
  • Requires authentication via API token or Auth0 JWT.