Skip to content
For LLMsView as Markdown·

Rippling

Manage employees, departments, and company data via the Rippling Platform API.

DetailValue
CategoryHR
Base URLhttps://api.rippling.com/platform/api
AuthenticationOAuth2
Endpoints6
Connector keyrippling

Using Rippling in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Rippling from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /employeesList employees
GET /employees/{employeeId}Get an employee
GET /departmentsList departments
GET /teamsList teams
GET /leave_requestsList leave requests
GET /companyGet company info

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /employees

List employees

DetailValue
Operation IDhr.listEmployees
MethodGET
Path/employees

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listEmployees.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.

GET /employees/{employeeId}

Get an employee

DetailValue
Operation IDhr.getEmployee
MethodGET
Path/employees/{employeeId}

Parameters

NameLocationTypeRequired
employeeIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.getEmployee.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.

GET /departments

List departments

DetailValue
Operation IDhr.listDepartments
MethodGET
Path/departments

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listDepartments.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.

GET /teams

List teams

DetailValue
Operation IDhr.listTeams
MethodGET
Path/teams

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listTeams.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.

GET /leave_requests

List leave requests

DetailValue
Operation IDhr.listLeaveRequests
MethodGET
Path/leave_requests

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listLeaveRequests.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.

GET /company

Get company info

DetailValue
Operation IDhr.getCompany
MethodGET
Path/company

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Rippling connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.getCompany.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Rippling API reference.