Updates a project’s name and/or description in your account.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Project name, may contain slashes
Body
A unique, user-defined name used when referencing the project.
Whether the project is versioned
Icon identifier for the project
Position/order of the project in list
Optional description of the project
curl --request PATCH \
--url 'https://api.unify.ai/v0/project/proj/a' \
--header "Authorization: Bearer $UNIFY_KEY"
--header 'Content-Type: application/json' \
--data '{
"name": "eval-project"
}'
{
"info": "Project updated successfully!"
}