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.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
project_name | str | Yes | — |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
project(string)is_template(boolean)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "unpublish_project_template", "arguments": { "project_name": "forecasts" }}Response
Section titled “Response”{ "project": "forecasts", "is_template": false}- Module:
Templates - Requires authentication via API token or Auth0 JWT.