API ReferenceEndpoints
Entity Endpoints
Manage entities, team members, and settings.
Entity endpoints manage organization-level profile and access control data.
GET
/api/v1/entitiescurl -H "Authorization: Bearer $TOKEN" https://api.sureshake.com/api/v1/entities
const entitiesRes = await fetch('https://api.sureshake.com/api/v1/entities', {
headers: { Authorization: `Bearer ${token}` },
});
const entities = await entitiesRes.json();Common operations:
- List entities available to the current identity.
- Update entity profile and settings.
- Manage entity members and roles.