Rippling
API actions for the Rippling integration.
Rippling
Manage HRIS data like workers, departments, and locations from Rippling.
Get worker
Fetch a single worker profile by Rippling worker ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
worker_id | string | Yes | Rippling worker identifier to retrieve. |
Response
{
"status": "abc123xyz",
"worker": {}
}List departments
List departments configured in Rippling.
Response
{
"departments": [
{}
],
"status": "abc123xyz"
}List locations
Retrieve company locations from Rippling.
Response
{
"locations": [
{}
],
"status": "abc123xyz"
}List time off requests
Retrieve time off requests in Rippling with optional status filter.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Optional status filter such as APPROVED or PENDING. |
Response
{
"requests": [
{}
],
"status": "abc123xyz"
}List workers
Retrieve workers from Rippling with optional status or department filters.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Optional employment status filter. |
department_id | string | No | Optional department identifier to filter workers. |
Response
{
"status": "abc123xyz",
"workers": [
{}
]
}