Sync Google Workspace employees
curl --request POST \
--url https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Integrations
Sync Google Workspace employees | Comp AI API
Sync Google Workspace employees in Comp AI. Connect vendor systems, configure OAuth apps, run compliance checks, sync employees, manage variables.
POST
/
v1
/
integrations
/
sync
/
google-workspace
/
employees
Sync Google Workspace employees
curl --request POST \
--url https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/integrations/sync/google-workspace/employees"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Was this page helpful?

