Overview
Getting Started
SDK/API
- Python SDK Reference
- TypeScript SDK Reference
How-to Guides
- Overview
- Conversational AI
- Retrieval-Augmented Generation
- Agentic AI
Cookbooks
- Use Cases
Integrations
Concepts
- Metrics
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
API Reference
- health
- auth
- trace
- log_stream
- experiment
- feedback
- annotation
- data
- protect
- datasets
- projects
- GETGet Collaborator Roles
- POSTCreate Project
- GETGet Project
- PUTUpdate Project
- DELDelete Project
- GETList User Project Collaborators
- POSTCreate User Project Collaborators
- GETList Group Project Collaborators
- POSTCreate Group Project Collaborators
- DELDelete User Project Collaborator
- PATCHUpdate User Project Collaborator
- DELDelete Group Project Collaborator
- PATCHUpdate Group Project Collaborator
- POSTGet Projects V2
- GET
References
projects
Update Project
PUT
/
v2
/
projects
/
{project_id}
curl --request PUT \
--url https://api.galileo.ai/v2/projects/{project_id} \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"name": "my_updated_project"
}'
{
"name": "<string>",
"created_by": "<string>",
"type": "training_inference",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
curl --request PUT \
--url https://api.galileo.ai/v2/projects/{project_id} \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"name": "my_updated_project"
}'
{
"name": "<string>",
"created_by": "<string>",
"type": "training_inference",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.