Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
webchat-settings
Update webchat settings
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/webchat-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "showSenderNameInWebchat": true,
  "aiAssistantName": "<string>"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "showSenderNameInWebchat": true,
    "aiAssistantName": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Body

application/json
showSenderNameInWebchat
boolean
aiAssistantName
string

Response

Webchat settings updated

success
boolean
message
string
data
object