Programmatically audit residency metrics, receive threshold notifications, and sync relocation logistics checks with internal ERP structures.
Export active day tallies for tax audits. Verify threshold milestones across target jurisdictions programmatically.
# Fetch travel logs for specific executive curl -X GET "https://api.chainwebsolutions.com/v1/executives/EX_84092/residency?year=2026" \ -H "Authorization: Bearer $RELOGATE_API_TOKEN"
Configure endpoint URLs to receive alerts immediately when an executive triggers threshold margins.
{
"timestamp": "2026-08-06T18:21:00Z",
"executive_id": "EX_84092",
"active_zone": "DE_GERMANY",
"day_count": 121,
"milestone_reached": "WARNING_120_DAYS",
"corporate_tax_risk": true
}
Initialize our JS helper libraries inside internal payroll or portal dashboards to launch document validation triggers.
const ReloGate = require('@chainweb/relogate');
const client = new ReloGate.Client({ apiKey: process.env.API_KEY });
// Launch passport OCR verification trigger
client.documents.parse({
fileUri: "s3://mumbai-bucket/passport_scan.jpg",
type: "PASSPORT"
}).then(data => {
console.log("Parsed passport metadata:", data.passportNumber);
});