Guides, API references and integration patterns for operators, developers and finance teams.
Spin up a sandbox tenant, import 12 sample employees from Horilla, and compute a Guyana September pay run end-to-end.
// Compute a Guyana September pay run
import { Heimdallone } from "@heimdallone/sdk";
const hd = new Heimdallone({
tenant: "atlas-shipping",
apiKey: process.env.HEIMDALL_KEY,
});
const run = await hd.payroll.compute({
country: "GY",
period: "2026-09",
profile: "gy.v2026.1",
});
console.log(run.net);
// → { GYD: 184_720_400, employees: 728 }