v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
Tenants

Get current tenant info

Retrieve the authenticated tenant's profile including settings and webhook configuration.

get/api/tenants/me

Response

Tenant profile details

idstring required
namestring required
slugstring required
emailstring required
apiKeystring required
webhookUrlstring
webhookSecretstring
isActiveboolean required
settingsobject
lastLoginAtstring
createdAtstring required
updatedAtstring required

Example response

{
  "id": "clx1234567890",
  "name": "Acme Corp",
  "slug": "acme-corp",
  "email": "john@company.com",
  "apiKey": "sk_live_abc123...",
  "webhookUrl": "https://example.com/webhooks",
  "webhookSecret": "whsec_abc123...",
  "isActive": true
}