List an employee's promotions
curl --request GET \
--url https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "1e2f3a4b-0000-0000-0000-000000000001",
"employeeId": "b2c3d4e5-0000-0000-0000-000000000001",
"fromTitle": "Engineer",
"toTitle": "Senior Engineer",
"fromDepartmentId": null,
"toDepartmentId": null,
"fromSalaryMinor": 40000000,
"toSalaryMinor": 55000000,
"effectiveDate": "2026-08-01",
"reason": "Strong H1 performance",
"createdAt": "2026-07-20T09:00:00+00:00"
}
]{
"code": "<string>",
"message": "<string>"
}Performance
List an employee's promotions
Promotion history for an employee, most recent first. Requires performance:read.
GET
/
v1
/
performance
/
employees
/
{employeeId}
/
promotions
List an employee's promotions
curl --request GET \
--url https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kuahr.com/v1/performance/employees/{employeeId}/promotions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "1e2f3a4b-0000-0000-0000-000000000001",
"employeeId": "b2c3d4e5-0000-0000-0000-000000000001",
"fromTitle": "Engineer",
"toTitle": "Senior Engineer",
"fromDepartmentId": null,
"toDepartmentId": null,
"fromSalaryMinor": 40000000,
"toSalaryMinor": 55000000,
"effectiveDate": "2026-08-01",
"reason": "Strong H1 performance",
"createdAt": "2026-07-20T09:00:00+00:00"
}
]{
"code": "<string>",
"message": "<string>"
}Authorizations
Your API key, e.g. kua_live_… (or kua_test_… in test mode).
Path Parameters
Response
OK
Previous salary in minor units (nullable).
New salary in minor units (nullable).
⌘I