Skip to main content

System & reference

Health checks, server metadata, and reference catalogs that aren't tied to a single domain. Available as mgr.system / mgr.System / mgr.system.

Health & server info

echo and ping are lightweight liveness checks; apiStatus reports API health; serverTime returns the server clock; pushToken returns the current push token.

await mgr.system.echo();
await mgr.system.ping();
const status = await mgr.system.apiStatus();
const time = await mgr.system.serverTime();
const token = await mgr.system.pushToken();

Reference catalogs

Look up timezones (optionally filtered), the tag catalog (all or by category), or export configuration templates of a given type.

const zones = await mgr.system.timezones({ q: "Europe" });
const tags = await mgr.system.tags();
const queueTags = await mgr.system.tagsByCategory("queue");
const templates = await mgr.system.exportTemplates("applications");

Reference