Skip to main content
PATCH
/
project
/
settings
Update settings
curl --request PATCH \
  --url https://api.chatling.ai/v2/project/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
    "status": "success",
    "data": {
        "project_id": "8917794239",
        "name": "My project"
    }
}

Documentation Index

Fetch the complete documentation index at: https://docs.chatling.ai/llms.txt

Use this file to discover all available pages before exploring further.

Request parameters

Body

name
string
required
The project name.

Response

status
string
The status of the request. Will be success if the request was successful, otherwise error.
data
object
{
    "status": "success",
    "data": {
        "project_id": "8917794239",
        "name": "My project"
    }
}