Members
Chatbots
Conversations
Knowledge base
Project
Update settings
Update the project settings.
PATCH
/
project
/
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"
}
}
Request parameters
Body
The project name.
Response
The status of the request. Will be success
if the request was successful, otherwise error
.
{
"status": "success",
"data": {
"project_id": "8917794239",
"name": "My project"
}
}
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"
}
}
Assistant
Responses are generated using AI and may contain mistakes.