Build native integrations through our scalable Unified APIs so you can focus on building your product. Available as REST API.
Integrations Marketplace
The #1 integration marketplace solution for SaaS companies. Easily showcase integrations, partners, and apps to your customers.
One unified API to sync time off requests across all major hris platforms. Build once, integrate everywhere.
Standard CRUD operations normalized across all platforms
/time-off-requestsRetrieve all time off requests with pagination and filtering
/time-off-requests/{id}Fetch a single time off request by ID
/time-off-requestsCreate a new time off request
/time-off-requests/{id}Update an existing time off request
Start syncing time off requests in minutes
import { Apideck } from '@apideck/node'
const apideck = new Apideck({
apiKey: 'YOUR_API_KEY',
appId: 'YOUR_APP_ID',
consumerId: 'user-123'
})
// List time off requests from any connected hris platform
const response = await apideck.hris.timeoffrequestsAll()
// Returns normalized data regardless of the underlying platform
console.log(response.data)
// [
// { id: '123', ... },
// { id: '456', ... }
// ]
// Works the same for Xero, QuickBooks, NetSuite, etc.Explore other unified endpoints in the HRIS API
You can use the official Apideck SDKs to simplify integrating our APIs.
The official Node.js SDK supports all the Unify API endpoints.
The official TypeScript SDK with full type definitions for all endpoints.
The official PHP SDK supports all the Unify API endpoints.
The official .NET SDK supports all the Unify API endpoints.
The official Python SDK supports all the Unify API endpoints.
The official Java SDK supports all the Unify API endpoints.
The official Go SDK supports all the Unify API endpoints.