Skip to main content
GET
/
hris
/
performance-review-cycles
Get performance review cycles 🦄
curl --request GET \
  --url https://api.kombo.dev/v1/hris/performance-review-cycles \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"id": "EiuNHJj2uqCcB7TqbCvEK5wA",
"remote_id": "32325554-5f85-4125-94a9-39917cf33b50",
"name": "2023 Performance Review Cycle",
"start_date": "2023-01-01T00:00:00.000Z",
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null,
"remote_data": null
}
}
Beta Feature: This endpoint is currently in beta. Please reach out to our support team if you need assistance with implementation.

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Headers

X-Integration-Id
string
required

ID of the integration you want to interact with.

Query Parameters

ids
string

Filter by a comma-separated list of IDs such as 222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3.

remote_ids
string

Filter by a comma-separated list of remote IDs.

Response

GET /hris/performance-review-cycles Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"id": "EiuNHJj2uqCcB7TqbCvEK5wA",
"remote_id": "32325554-5f85-4125-94a9-39917cf33b50",
"name": "2023 Performance Review Cycle",
"start_date": "2023-01-01T00:00:00.000Z",
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null,
"remote_data": null
}
⌘I