Get employment evidence attachments
curl --request GET \
--url https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType} \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)People
Get employment evidence attachments | Comp AI API
Get employment evidence attachments in Comp AI. Invite and manage workforce members, training status, device compliance, email preferences, and employee.
GET
/
v1
/
people
/
{id}
/
employment-evidence
/
{eventType}
Get employment evidence attachments
curl --request GET \
--url https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType} \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/{id}/employment-evidence/{eventType}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

