curl --request PUT \
--url https://api.example.com/v1/projects/{project_identifier} \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>"
}
'{
"data": {
"name": "<string>",
"id": "<string>",
"description": "<string>"
}
}Update an existing project with new configuration. Project names cannot be changed. The project identifier is either project ID or project name. Note: When using a project name as the identifier, it cannot contain slash (/), question mark (?), or pound sign (#) characters.
curl --request PUT \
--url https://api.example.com/v1/projects/{project_identifier} \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>"
}
'{
"data": {
"name": "<string>",
"id": "<string>",
"description": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The project identifier: either project ID or project name. If using a project name, it cannot contain slash (/), question mark (?), or pound sign (#) characters.
The updated project
Show child attributes
Was this page helpful?