Email Health
GET
/health/internal/email
const url = 'https://example.com/health/internal/email';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/health/internal/email \ --header 'Authorization: Bearer <token>'Admin-only email service diagnostics.
Returns mode (dev/production), API reachability, and template configuration
count. Requires superadmin JWT — not exposed on the public
/health/features endpoint (see CWE-200 notes above).
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example