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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Name of the project to rename.
Body
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!"
}