Tenant Secrets
List tenant secrets. Requires X-Tenant-ID header and appropriate permissions.
Example
fetch('https://auth.magicrunez.com/tenant/secrets', {
method: 'GET',
headers: { 'Content-Type': 'application/json',
'X-Tenant-ID': '...value...',
'Authorization': '...value...'
}
})
.then(r => r.json())
.then(console.log)
.catch(console.error);