GET
/
api
/
hris
/
v1
/
integrations
curl --request GET \
  --url https://api.bindbee.dev/api/hris/v1/integrations \
  --header 'Authorization: Bearer <token>'
{
  "cursor": "MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1",
  "page_size": 50,
  "items": [
    {
      "integration_id": "018b18ef-c487-703c-afd9-0ca478ccd9d6",
      "is_enabled": true,
      "integration_slug": "ukg_pro",
      "category": "HRIS",
      "display_name": "BambooHR",
      "icon_url": "https://images.unifyx.dev/logos/icon/ats/recruitee.svg",
      "description": "BambooHR is an intuitive HRIS solution designed to streamline HR processes, offering features for employee onboarding, performance management, and HR analytics, providing organizations with a user-friendly platform for effective workforce management."
    }
  ]
}

Overview

This is a demo of how to use the Integrations API to get all active integrations for specific category. This guide will help you understand the endpoints available and how to utilize them effectively.

You can also access integrations for different categories using https://api.bindbee.dev/api/{category}/v1/integrations. To retrieve ATS integrations, use: https://api.bindbee.dev/api/ats/v1/integrations

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer
default:
50

Number of results to return per page. Maximum size is 100.

Required range: 1 < x < 1000
cursor
string

The pagination cursor value.

Response

200
application/json
Successful Response
cursor
string | null
required

Cursor value to fetch next set of items

page_size
integer
required

Indicates the count of items in the response

items
object[] | null
required