Skip to main content
PATCH
/
api
/
v2
/
chatbots
/
{chatbotId}
/
settings
Update settings
curl --request PATCH \
  --url https://sitegpt.ai/api/v2/chatbots/{chatbotId}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "ok": true,
  "data": {
    "setting": {
      "id": "setting-id",
      "name": "Example setting",
      "createdAt": "2026-05-13T00:00:00.000Z"
    }
  },
  "meta": {
    "requestId": "request-id"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

chatbotId
string
required

Body

application/json

Partial safe chatbot settings patch. Only public dashboard settings accepted by API v2 can be changed.

Response

Successful SiteGPT API v2 response.

ok
boolean
required
data
object
required
meta
object
required