Nurama Developers

update_project

Rename or redescribe a project.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Rename or redescribe a project. Pass updateSlug: true if you want the URL slug to be regenerated from the new name (otherwise it stays the same).

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
namestringnoNew project name. min length 1
descriptionstringnoNew project description.
updateSlugbooleannoIf true, regenerate the URL slug from the new name. Changes external links.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "New project name."
    },
    "description": {
      "type": "string",
      "description": "New project description."
    },
    "updateSlug": {
      "type": "boolean",
      "description": "If true, regenerate the URL slug from the new name. Changes external links."
    }
  },
  "required": [
    "projectId"
  ],
  "additionalProperties": false
}

On this page