---
title: "Update Project"
method: PUT
path: "/api/v1/projects/{project_id}"
tags: ["Projects"]
---

# Update Project

`PUT /api/v1/projects/{project_id}`

Update the custom instructions attached to a given project. Updates the project with any provided non-null fields and returns the resulting Flow object.

## Path parameters

- `project_id` string, required

## Request body

- UpdateProjectPayload
  - `name` string, nullable — The name of the flow.
  - `chatInstructions` string, nullable — How would you like Chat Explore to respond? For example: - Respond only in spanish - Provide short and concise answers only - Make sure to always include a chart
  - `chatContext` string, nullable — What would you like Chat Explore to know about this application to provide better responses? For example: - This dataset is customer engagement data - The units of the sales column are in millions - The data is messy and contains typos
  - `chatSuggestions` string, nullable — Customize the default chat suggestions by writing a list of suggestions separated by newlines. For example: - What is the average net media cost by campaign ID? - Make sure to always include a chart

## Response `200`

Successful Response

- GetProjectResponse
  - `id` string, required — The ID of this object.
  - `name` string — The name of the flow.
  - `chatInstructions` string — How would you like Chat Explore to respond? For example: - Respond only in spanish - Provide short and concise answers only - Make sure to always include a chart
  - `chatContext` string — What would you like Chat Explore to know about this application to provide better responses? For example: - This dataset is customer engagement data - The units of the sales column are in millions - The data is messy and contains typos
  - `chatSuggestions` string — Customize the default chat suggestions by writing a list of suggestions separated by newlines. For example: - What is the average net media cost by campaign ID? - Make sure to always include a chart

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/akkio/apis/fastapi.md) · [All operations](https://skmtc.net/akkio/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/akkio/fastapi/versions/6662a407c637/schema)
