Get integration test statistics grouped by assignee
curl --request GET \
--url https://api.trycomp.ai/v1/people/test-stats/by-assignee \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/test-stats/by-assignee', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/test-stats/by-assignee"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)People
Get integration test statistics grouped by | Comp AI API
Get integration test statistics grouped by assignee in Comp AI. Invite and manage workforce members, training status, device compliance, email preferences.
GET
/
v1
/
people
/
test-stats
/
by-assignee
Get integration test statistics grouped by assignee
curl --request GET \
--url https://api.trycomp.ai/v1/people/test-stats/by-assignee \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/test-stats/by-assignee', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/test-stats/by-assignee"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Response
200 - undefined
Was this page helpful?

