live-chat

PATCH /v1/chat/widgets/{widgetId}

Change a chat's settings, or switch it on.

All live-chat endpoints

Authentication

Send an API key as a bearer token. The key must carry the livechat.manage permission; a key without it is refused with 403, not 404.

This endpoint takes no organisation id. Your key already identifies the organisation it belongs to, and the response is scoped to it.

Try it

Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.

curl -X PATCH https://api.zinndigital.com/v1/chat/widgets/{widgetId} \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{  }'

Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console

Details

Requires `livechat.manage`. Switching a widget on with no `allowedOrigins` is refused with `422` rather than accepted: the widget only answers pages on origins the customer listed, so an empty list would leave the chat live, looking configured, and invisible on every page with nothing saying why.

Parameters

NameTypeRequiredWhat it is
widgetId (path)stringYes

Request body

NameTypeRequiredWhat it is
namestringNo
enabledbooleanNo
allowed_originsstring[]No
greetingstringNo
team_namestringNo
accent_colourstringNo
positionstring<left, right>No
hide_brandingbooleanNo
ai_enabledbooleanNo
offline_emailstringNo
business_hoursobjectNo

Response

NameTypeRequiredWhat it is
idstringYes
site_idstringYes
namestringYes
public_keystringYes
enabledbooleanYesWhether the chat renders. Created FALSE always: the plugin ships in the deploy footprint of every WordPress site we host, so a widget may exist for a customer who never asked fo…
allowed_originsstring[]YesOrigins the widget may be embedded on. An EMPTY list refuses every page rather than allowing any — this is the only control stopping somebody else's site opening conversations a…
tierstringYes
greetingstringYes
team_namestringYes
accent_colourstringYes
positionstring<left, right>Yes
hide_brandingbooleanYes
ai_enabledbooleanYes
offline_emailstringYes
business_hoursobjectNo
open_nowbooleanYes
ai_allowanceChatAiAllowanceYes
limitsobjectYes
premium_extra_codestringYesThe catalogue code to buy for the premium tier.

Errors this endpoint can return

401 · 403 · 404 · 422