Users and admin

Get tenant details

Fetches the details of a single WUTS tenant by its unique identifier. Restricted to platform operators holding the master token.

GET
/global/tenants/{id}

Fetches the details of a single WUTS tenant by its unique identifier. Restricted to platform operators holding the master token.

Authorization

masterToken
AuthorizationBearer <token>

Platform master token sent as Authorization: Bearer <master-token>. Required only for Super Admin (cross-tenant) endpoints.

In: header

Path Parameters

id*string

Unique identifier of the tenant.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/global/tenants/string"
{  "success": true,  "data": {    "id": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",    "name": "Acme Atendimento",    "created_at": "2026-06-15T12:00:00Z",    "updated_at": "2026-06-15T12:00:00Z"  }}
{  "success": false,  "error": "tenant ID is required"}
{  "success": false,  "error": "master token required"}
{  "success": false,  "error": "tenant not found"}