PATCH
/
v0
/
project
/
{name}
curl --request PATCH \
  --url 'https://api.unify.ai/v0/project/old-project-name' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "name": "eval-project"
}'
{
    "info": "Project renamed successfully!"
}

Renames a project from name to new_name in your account.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

name
string
required

Name of the project to rename.

Body

name
string
required

A unique, user-defined name used when referencing the project.

curl --request PATCH \
  --url 'https://api.unify.ai/v0/project/old-project-name' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "name": "eval-project"
}'
{
    "info": "Project renamed successfully!"
}