List the org’s members
const url = 'https://api.sloose.com/orgs/org_9f3c/members';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.sloose.com/orgs/org_9f3c/members \ --header 'Authorization: Bearer <token>'Everybody in the org, with their role, where that role came from, and whether their access has been revoked.
Readable by any member, not just administrators: colleagues are not a secret, and knowing who to ask for a role change is the first thing somebody needs.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”The org id the session was issued for. A token for one org can never read another.
Example
org_9f3cThe org id the session was issued for. A token for one org can never read another.
Responses
Section titled “Responses”Everybody in the org.
object
object
Where the role came from: the CRM profile at sign-in, or set by hand here. A manual role is not reset by signing in again.
How the org’s CRM knows this member — the Zoho user id. Null for someone who joined another way.
When access was revoked. Null while they can still use the org.
Example
{ "members": [ { "role": "operator" } ]}No bearer, or one that is expired, revoked or no longer resolves to a member.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}The bearer’s role is too low, or it was issued for a different org.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}