Agent Builder
Update livechat settings
Updates livechat channel settings. Requires a USER API key.
put/public/v1/agents/{agentId}/settings/livechat
Path parameters
agentIdstring required
Example:uuid-xxxx-xxxx
Request body
Example request
{
"splitCharacterLimit": 1,
"conversationClose": "NEVER",
"closeAfter": 1,
"timeUnit": "MINUTES",
"feedbackVisibility": "ON_HOVER",
"feedbackText": "example",
"openFeedbackText": "example",
"feedbackReasons": [
{
"id": 1,
"reason": "example"
}
],
"idleSettings": {
"after": 1,
"timeUnit": "MINUTES",
"resetsLimit": 1
}
}Response
Updated channel settings
Example response
{
"splitCharacterLimit": 1,
"conversationClose": "NEVER",
"closeAfter": 1,
"timeUnit": "MINUTES",
"feedbackVisibility": "ON_HOVER",
"feedbackText": "example",
"openFeedbackText": "example",
"feedbackReasons": [
{
"id": 1,
"reason": "example",
"order": 1
}
],
"idleSettings": {
"id": 1,
"after": 1,
"timeUnit": "MINUTES",
"resetsLimit": 1
}
}