Examples
Javascript
const baseURL = 'https://api.orbiit.ai/v0';
const token = '<YOUR-ORBIIT-TOKEN>';
const workspaceId = '<YOUR-ORBIIT-WORKSPACE-ID>';
const audienceId = '<AUDIENCE-ID>';
const url = `${baseURL}/workspaces/${workspaceId}/audience/${audienceId}/members`;
fetch(url, {
method: 'get',
headers: new Headers({
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
})
})
.then((res) => res.json())
.then((data) => {
console.log('data: ', data);
})Python
Last updated