List all tenants
Returns every tenant registered on the WUTS platform. This master-token-only endpoint is used by platform operators to audit and manage the full tenant base.
Returns every tenant registered on the WUTS platform. This master-token-only endpoint is used by platform operators to audit and manage the full tenant base.
Authorization
masterToken Platform master token sent as Authorization: Bearer <master-token>. Required only for Super Admin (cross-tenant) endpoints.
In: header
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/tenants"{ "success": true, "tenants": [ { "id": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", "name": "Acme Atendimento", "created_at": "2026-06-15T12:00:00Z", "updated_at": "2026-06-15T12:00:00Z" }, { "id": "2b3c4d5e-6f7a-8b9c-0d1e-2f3a4b5c6d7e", "name": "Revotalk Demo", "created_at": "2026-05-01T09:30:00Z", "updated_at": "2026-06-10T18:45:00Z" } ]}{ "success": false, "error": "invalid master token"}{ "success": false, "error": "failed to list tenants"}Get tenant details GET
Fetches the details of a single WUTS tenant by its unique identifier. Restricted to platform operators holding the master token.
Register a new tenant POST
Provisions a brand-new WUTS tenant together with its first administrator user and authentication token. The first user of a tenant is always promoted to the admin role, and an optional webhook URL can be pre-staged to auto-configure when the tenant connects its first WhatsApp device. This is a master-token-only operation.