Users
A User represents an individual’s identity: their email address and display name. A user can belong to multiple organizations.Members
A Member record links a User to an Organization with a specific role. Most API endpoints work with Member IDs rather than User IDs, since the meaningful context is always within an org.Key fields
User
Member
Denormalized name fields
Some resources (Captures, Skills) storememberFirstName and memberLastName directly on the record. This is intentional; it ensures display names remain stable even if a user updates their profile after the fact.
Endpoints
GET /api/org/:orgId/members— list all members of an orgGET /api/org/:orgId/members/:memberId— get a specific memberPATCH /api/org/:orgId/members/:memberId— update role or profile fields
