ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
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",
"labels": [
"sample"
],
"description": "<string>"
}
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",
"labels": [
"sample"
],
"description": "<string>"
}
Successful Response
The response is of type object
.
Was this page helpful?