Connection health and members
const url = 'https://api.sloose.com/auth/orgs/org_9f3c/connection';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/auth/orgs/org_9f3c/connection \ --header 'Authorization: Bearer <token>'Whether the org is connected, which scopes were granted, when it was last checked, and how many CRM users are active — the number plan limits are banded on. Also lists the org’s members and where each one’s role came from.
Never returns the token itself.
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”Connection state and the org’s members.
object
object
object
Whether the role came from the CRM profile or was set here.
Examplegenerated
{ "connected": true, "connection": { "scopes": [ "example" ], "health": "example", "activeUserCount": 1, "checkedAt": "example", "grantedByUserId": "example", "createdAt": "example" }, "members": [ { "userId": "example", "email": "example", "displayName": "example", "role": "example", "roleSource": "example", "zohoProfile": "example", "lastSeenAt": "example" } ]}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"}