Project
List settings
Members
Chatbots
Conversations
Knowledge base
Project
List settings
Retrieve the settings of the project.
GET
/
project
/
settings
curl --request GET \
--url https://api.chatling.ai/v2/project/settings \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"project_id": "8917794239",
"name": "My first project"
}
}
Response
The status of the request. Will be success
if the request was successful, otherwise error
.
{
"status": "success",
"data": {
"project_id": "8917794239",
"name": "My first project"
}
}
curl --request GET \
--url https://api.chatling.ai/v2/project/settings \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"project_id": "8917794239",
"name": "My first project"
}
}