---
title: "Get Ats Connectors"
method: GET
path: "/api/ats/v1/connectors"
tags: ["Connector"]
---

# Get Ats Connectors

`GET /api/ats/v1/connectors`

Returns a list of ATS connectors

## Query parameters

- `connector_token` string — The connector token for the connector
- `is_active` boolean, nullable — Filter connectors by active status
- `origin_id` string, nullable — Filter connectors by end user origin ID
- `page_size` integer — Number of results to return per page. Maximum size is 200.
- `cursor` string — The pagination cursor value.

## Response `200`

Successful Response

- PaginatedResponseConnectorResponse
  - `cursor` string, nullable, required — Cursor value to fetch next set of items
  - `page_size` integer, required — Indicates the count of items in the response
  - `items` ConnectorResponse[], required — List of items in the current response
    - `id` string, uuid, required — Id of the connector
    - `is_active` boolean, required — Flag to indicate if connector is active or not
    - `status` 'COMPLETE' | 'INCOMPLETE' | 'RELINK_NEEDED', required
    - `integration_slug` string, required — Integration slug for the particular connector
    - `end_user` string, required — Name of the end user which is used when creating corresponding connector
    - `origin_id` string, nullable, required — Origin ID of the end user
    - `sync_status` 'Syncing' | 'Done' | 'Failed', required
    - `last_sync_start_time` string, date-time, nullable, required — This time represent last sync start time
    - `next_sync_start_time` string, date-time, nullable, required — This time represent next sync start time
    - `connector_token` string, required — Connector token for this connector
    - `category` 'HRIS' | 'ATS' | 'LMS', required
    - `relink_needed_at` string, date-time, nullable, required — Time at which credentials were deemed invalid
    - `is_test_connector` boolean, required — Flag indicating if connector is test connector or not
    - `completed_at` string, date-time, nullable, required — Indicated time at which connector has been linked properly
    - `created_at` string, date-time, required — Connector creation time

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

[API](https://skmtc.net/bindbee/apis/bindbee-apis.md) · [All operations](https://skmtc.net/bindbee/apis/bindbee-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bindbee/bindbee-apis/revisions/7da10dc93a21/schema)
