v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
Project

Update a project

Update an existing project's fields (project owner only).

patch/projects/{project_id}

Path parameters

project_idinteger required

Query parameters

cookie_namestring nullable

Request body

namestring required

Display name of the project.

description_show_in_chatboolean

Whether the project description is shown to users in chat.

descriptionstring nullable

Optional longer description of the project's purpose.

Example request

{
  "name": "Customer Support Bot",
  "description": "Internal assistant for the support team."
}

Response

Successful Response

idinteger nullable

Primary key for the project.

tenant_idinteger required

ID of the tenant that owns the project.

created_atstring date-time

Timestamp when the project was created.

creator_user_idinteger required

ID of the user who created the project.

namestring required

Name of the project.

descriptionstring nullable required

Optional description of the project.

description_show_in_chatboolean

Whether the project description is shown in the chat UI.

Example response

{
  "id": 1,
  "tenant_id": 1,
  "created_at": "2026-06-23T12:00:00Z",
  "creator_user_id": 1,
  "name": "Marketing Campaign",
  "description": "Project for Q3 marketing assets"
}