Skip to content

unpublish_project_template

Remove internal template status from a project. Requires Owner role on the project. After unpublishing, the project no longer appears in the templates:// resource and cannot be cloned via create_project_from_template. Existing projects already cloned from this template are not affected. Returns: project (str) — the project name; is_template (bool) — always false on success.

NameTypeRequiredDefaultDescription
project_namestrYes

Returns a structured object. Top-level fields:

  • project (string)
  • is_template (boolean)

See the response example below for the full payload shape.

{
"name": "unpublish_project_template",
"arguments": {
"project_name": "forecasts"
}
}
{
"project": "forecasts",
"is_template": false
}
  • Module: Templates
  • Requires authentication via API token or Auth0 JWT.