Integrate HR, payroll, and workforce management into your applications with our powerful REST API.
// Install the SDK
npm install @mployr/api-client
// Initialize the client
import { MployrClient } from '@mployr/api-client';
const client = new MployrClient({
baseUrl: 'https://api.mployr.com.au/v1',
});
// Authenticate
const { token } = await client.auth.login({
email: 'your@email.com',
password: 'your-password',
});
// Make API calls
const people = await client.people.list();
console.log(people.data);Everything you need to build integrations with the Mployr System.
Clean, predictable API endpoints following REST best practices.
JWT authentication, role-based access, and encrypted connections.
SCD Type 2 support for complete audit trails and data history.
| Environment | Base URL |
|---|---|
| Production | https://api.mployr.com.au/v1 |
| Development | https://devapi.mployr.com.au/api |
| Local | http://localhost:8000 |