Summarize policy acknowledgments by member
curl --request GET \
--url https://api.trycomp.ai/v1/policy-acknowledgments/summary \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/policy-acknowledgments/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/policy-acknowledgments/summary"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"memberId": "mem_abc123",
"lastSignedAt": "2026-04-29T06:27:23.778Z",
"hasAcknowledged": true
}
],
"count": 500,
"authType": "session",
"authenticatedUser": {
"id": "usr_abc123",
"email": "ada@example.com"
}
}Policies
Summarize policy acknowledgments by member | Comp AI API
Returns one row per active member with the date of their most recent policy acceptance across all required policies. Use for a people overview; call the.
GET
/
v1
/
policy-acknowledgments
/
summary
Summarize policy acknowledgments by member
curl --request GET \
--url https://api.trycomp.ai/v1/policy-acknowledgments/summary \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/policy-acknowledgments/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/policy-acknowledgments/summary"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"memberId": "mem_abc123",
"lastSignedAt": "2026-04-29T06:27:23.778Z",
"hasAcknowledged": true
}
],
"count": 500,
"authType": "session",
"authenticatedUser": {
"id": "usr_abc123",
"email": "ada@example.com"
}
}Authorizations
API key for authentication
Was this page helpful?

