> ## Documentation Index
> Fetch the complete documentation index at: https://docs.atomscale.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Project

> Update an existing project

Updates an existing project. Only the fields you include in the request body are changed.

<ParamField path="project_id" type="string" required>
  UUID of the project to update
</ParamField>

<ParamField body="name" type="string">
  New project name
</ParamField>

## Response

Returns the UUID of the updated project.

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH "https://api.atomscale.ai/projects/d290f1ee-6c54-4b01-90e6-d701748f0851" \
    -H "X-API-KEY: YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "InGaN LED Development (2024)"
    }'
  ```

  ```python Python theme={null}
  import requests

  response = requests.patch(
      "https://api.atomscale.ai/projects/d290f1ee-6c54-4b01-90e6-d701748f0851",
      headers={
          "X-API-KEY": "YOUR_API_KEY",
          "Content-Type": "application/json"
      },
      json={
          "name": "InGaN LED Development (2024)"
      }
  )
  project_id = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  "d290f1ee-6c54-4b01-90e6-d701748f0851"
  ```
</ResponseExample>
