Docs — Tenant Info

Tenant Info

Fetch tenant information. Requires X-Tenant-ID header.

Example

fetch('https://auth.magicrunez.com/tenant', {
  method: 'GET',
  headers: { 'Content-Type': 'application/json',
    'X-Tenant-ID': '...value...'
  }
})
  .then(r => r.json())
  .then(console.log)
  .catch(console.error);