Skip to main content
GET
/
v1
/
device-agent
/
my-organizations
List organizations for the current device
curl --request GET \
  --url https://api.trycomp.ai/v1/device-agent/my-organizations
const options = {method: 'GET'};

fetch('https://api.trycomp.ai/v1/device-agent/my-organizations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.trycomp.ai/v1/device-agent/my-organizations"

response = requests.get(url)

print(response.text)

Response

200 - undefined