Skip to main content
PUT
/
v1
/
projects
Update an existing project
curl --request PUT \
  --url https://api.honeyhive.ai/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "new_name": "<string>",
  "description": "<string>",
  "type": "evaluation"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json

Request body for updating a project

name
string
required

Project name to identify the project

Minimum string length: 1
new_name
string

New project name

description
string

New project description

type
enum<string>

New project type

Available options:
evaluation,
completion

Response

200

Successfully updated the project