Skip to main content
PUT
/
projects
/
{id}
Update project
curl --request PUT \
  --url https://api.vocobase.com/api/v2/projects/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Client A (updated)",
  "description": "Updated description"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "is_default": true,
    "agent_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Path Parameters

id
string
required

Project ID

Body

application/json
name
string

New project name.

Maximum string length: 100
description
string

New project description.

Maximum string length: 500

Response

Project updated.

success
boolean
data
object