GET
/
api
/
hris
/
v1
/
connectors
Get Hris Connectors
curl --request GET \
  --url https://api.bindbee.dev/api/hris/v1/connectors \
  --header 'Authorization: Bearer <token>'
{
  "cursor": "MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1",
  "page_size": 50,
  "items": [
    {
      "id": "018b18ef-c487-703c-afd9-0ca478ccd9d6",
      "is_active": true,
      "status": "COMPLETE",
      "integration_slug": "ukg-pro",
      "end_user": "Acme Corp.",
      "sync_status": "Done",
      "last_sync_start_time": "2024-10-16T00:00:00Z",
      "next_sync_start_time": "2024-10-17T00:00:00Z",
      "connector_token": "LJITuCJFqpGXeKfZtn4I9ZcahzA-lkCSO6uhDKj5xw9EzPL96qk7ObgIHQQ1GnxH",
      "category": "HRIS",
      "is_test_connector": false,
      "completed_at": "2024-10-17T00:00:00Z",
      "created_at": "2024-10-17T00:00:00Z"
    }
  ]
}

Overview

This is a demo of how to use the Connectors API to get all connectors for specific category. This guide will help you understand the endpoints available and how to utilize them effectively.
You can also access connectors for different categories using https://api.bindbee.dev/api/{category}/v1/connectors. To retrieve ATS connectors, use: https://api.bindbee.dev/api/ats/v1/connectors and to retrieve LMS connectors, use: https://api.bindbee.dev/api/lms/v1/connectors

Authorizations

Authorization
string
header
required

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

Query Parameters

connector_token
string

The connector token for the connector

is_active
boolean | null

Filter connectors by active status

page_size
integer
default:50

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

Required range: 1 <= x <= 100
cursor
string

The pagination cursor value.

Response

Successful Response

cursor
string | null
required

Cursor value to fetch next set of items

Example:

"MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1"

page_size
integer
required

Indicates the count of items in the response

Example:

50

items
ConnectorResponse · object[] | null
required