Accounting & ERP
UKG is a HR, payroll, & workforce management solutions provider. Using Agave, you can integrate with UKG and dozens of other systems in hours using a single API.
Financials Management | Read | Write |
---|---|---|
employees | ||
Passthrough Requests | Read | Write |
More UKG endpoints (without unified model) |
Agave has sandbox environments with sample data that you can use instead of spending time creating your own.
Agave provides unified models and access to source data. In addition, we even support passthrough requests, so you are never blocked by us.
curl https://api.agaveapi.com/employees \
# 3 headers that are consisttent
-H 'Api-Version: 2021-11-21' \
-H 'Client-Id: your-client-id' \
-H 'Client-Secret: your-client-secret' \
# Change the account token to request data from different accounts and different systems
-H 'Account-Token: ukg-example-account-token'
Consistent schema across all systems
{
"id": "da520db8-499d-5096-947b-aaa72f3b0397",
"source_id": "FB4634000070",
"address": {...},
"code": "12345",
"company": "TEST",
"email": "test@gmail.com",
"first_name": "Field",
"full_name": "Field Test",
"gender": "M",
"hire_date": "2024-02-01",
"industry": "LA1",
"job_title": "Laborer 1",
"last_name": "Test",
"mobile_phone": null,
"phone": "1234567890",
"source_create_time": "2024-05-01T17:35:28Z",
"source_update_time": "2024-07-11T10:26:51Z",
"status": "Active",
"termination_date": null,
"type": "Hourly"
}
Get raw output from UKG
{
"ssn": "999999999",
"shift": "Z",
"gender": "M",
"i9DocA": null,
"i9DocB": null,
"i9DocC": null,
"isSmoker": false,
"jobTitle": null,
"lastName": "Test",
"mailstop": null,
"payGroup": "NOPAY",
"personId": "5c8f16b8-41d3-4a70-a5ca-db23a84a42f3",
"termType": null,
"userName": "test@gmail.com",
"addressId": "16c356cf-e853-4638-b347-23ed28b9c897",
"clockCode": null,
"companyID": "X43FD",
"companyId": "X43FD",
"dateInJob": "2024-06-06T00:00:00",
...
}
Option to call UKG APIs directly
curl --request POST https://api.agaveapi.com/passthrough \
--header 'API-Version: 2021-11-21' \
--header 'Client-Id: your-client-id' \
--header 'Client-Secret: your-client-secret' \
--header 'Account-Token: ukg-account-token' \
--header 'Content-Type: application/json' \
--data-raw '{
"method": "GET",
"path": "/rest/v1.0/employees,
"data": { "company_id": 31936 }
}'