Create a key
1
Open Settings → API keys
Every member can see the list of keys. Creating and revoking needs the
Owner or Admin role.
2
Click New API key
Name it after the integration that will use it — “Zapier automation”,
“Order sync” — up to 80 characters. The name is how you will recognise it
later when deciding what to revoke.
3
Tick the scopes it needs
Grant the minimum. A key that only sends messages needs
messages:send and
nothing else.4
Copy the key
The full key is shown once, in the dialog. Watx stores only a hash of
it, so it can never be shown again. If you lose it, revoke it and create a
new one.
watx_live_. Keys issued before the product was renamed
start with converse360_live_ and keep working — there is no need to rotate
them.
The list shows each key’s prefix, its scopes, when it was created and when it
was last used, plus a badge when it is Revoked or Expired.
Scopes
Segments deliberately reuse the contact scopes rather than having their own. A
segment is contact data, and a new scope would be missing from every key already
issued — every live integration would start failing the day it shipped.
A key with no scopes still authenticates. It can call
GET /me and nothing
else, which makes it a safe way to test that a key reaches the right workspace.
Check what a key can do
What a failure looks like
A 401 means the key itself was not accepted — missing, malformed, unknown, revoked or expired. All of those answer identically, so an attacker probing keys learns nothing:Revoke a key
Settings → API keys → Revoke. The key stops working on its next request. Revoked keys stay in the list, struck through, as a record of what existed. Revoke a key when the integration that used it is retired, when someone who had a copy leaves, or whenever you are not certain where a key has been.Keeping a key safe
- Keep it on a server. A key in browser JavaScript, a mobile app or a public repository is a key anyone can read. The API sends no CORS headers, so a browser cannot call it directly in any case — call it from your backend.
- One key per integration. Then revoking one thing does not break the other three.
- Grant the minimum. A reporting script that only reads contacts should not
hold
messages:send. - Rotate by overlap. Create the new key, deploy it, then revoke the old one. There is no way to un-revoke.
- Watch “last used”. A key that has never been used, or has not been used in months, is a key to revoke.