---
title: "Update Project"
method: POST
path: "/project/update"
tags: ["project management"]
---

# Update Project

`POST /project/update`

Update a project

Parameters:
- project_id: *str* - The project id to update. Required.
- project_alias: *Optional[str]* - Updated name for the project
- description: *Optional[str]* - Updated description for the project
- team_id: *Optional[str]* - Updated team_id for the project
- metadata: *Optional[dict]* - Updated metadata for project
- models: *Optional[list]* - Updated list of models for the project
- blocked: *Optional[bool]* - Updated blocked status
- max_budget: *Optional[float]* - Updated max budget
- tpm_limit: *Optional[int]* - Updated tpm limit
- rpm_limit: *Optional[int]* - Updated rpm limit
- model_rpm_limit: *Optional[dict]* - Updated RPM limits per model
- model_tpm_limit: *Optional[dict]* - Updated TPM limits per model
- budget_duration: *Optional[str]* - Updated budget duration
- tags: *Optional[list]* - Updated list of tags for the project
- object_permission: Optional[LiteLLM_ObjectPermissionBase] - Updated object permission

Example:
```bash
curl --location 'http://0.0.0.0:4000/project/update' \
--header 'Authorization: Bearer sk-1234' \
--header 'Content-Type: application/json' \
--data '{
    "project_id": "project-123",
    "description": "Updated flight search system with enhanced capabilities",
    "max_budget": 200,
    "model_rpm_limit": {
        "gpt-4": 2000,
        "gpt-3.5-turbo": 10000
    },
    "metadata": {
        "use_case_id": "SNOW-12345",
        "status": "active"
    }
}'
```

## Request body

- UpdateProjectRequest — Request model for POST /project/update
  - `budget_id` string, nullable
  - `soft_budget` number, nullable
  - `max_budget` number, nullable
  - `max_parallel_requests` integer, nullable
  - `tpm_limit` integer, nullable
  - `rpm_limit` integer, nullable
  - `model_max_budget` object, nullable
  - `budget_duration` string, nullable
  - `project_id` string, required
  - `project_alias` string, nullable
  - `description` string, nullable
  - `team_id` string, nullable
  - `metadata` object, nullable
  - `tags` string[], nullable
  - `models` string[], nullable
  - `model_rpm_limit` object, nullable
  - `model_tpm_limit` object, nullable
  - `blocked` boolean, nullable
  - `object_permission` LiteLLMObjectPermissionBase
    - `mcp_servers` string[], nullable
    - `mcp_access_groups` string[], nullable
    - `mcp_tool_permissions` object, nullable
    - `vector_stores` string[], nullable
    - `agents` string[], nullable
    - `agent_access_groups` string[], nullable
    - `models` string[], nullable

## Response `200`

Successful Response

- LiteLLMProjectTable — Database model representation for project
  - `project_id` string, required
  - `project_alias` string, nullable
  - `description` string, nullable
  - `team_id` string, nullable
  - `budget_id` string, nullable
  - `metadata` object, nullable
  - `models` string[]
  - `spend` number
  - `model_spend` object, nullable
  - `model_rpm_limit` object, nullable
  - `model_tpm_limit` object, nullable
  - `blocked` boolean
  - `object_permission_id` string, nullable
  - `created_by` string, required
  - `updated_by` string, required
  - `created_at` string, date-time, nullable
  - `updated_at` string, date-time, nullable
  - `litellm_budget_table` LiteLLMBudgetTable — Represents user-controllable params for a LiteLLM_BudgetTable record
    - `budget_id` string, nullable
    - `soft_budget` number, nullable
    - `max_budget` number, nullable
    - `max_parallel_requests` integer, nullable
    - `tpm_limit` integer, nullable
    - `rpm_limit` integer, nullable
    - `model_max_budget` object, nullable
    - `budget_duration` string, nullable
  - `object_permission` LiteLLMObjectPermissionTable — Represents a LiteLLM_ObjectPermissionTable record
    - `object_permission_id` string, required
    - `mcp_servers` string[], nullable
    - `mcp_access_groups` string[], nullable
    - `mcp_tool_permissions` object, nullable
    - `vector_stores` string[], nullable
    - `agents` string[], nullable
    - `agent_access_groups` string[], nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
