The member object

Shape of a team Member, a user with access to the organization.

A Member is one user with access to the organization. Each membership has a role (owner, admin, member) that determines what the user can do in the dashboard.

Object shape

{
  "id": "member_64f1c0ef2ec711ef6dc1dcf",
  "user_id": "user_64f1c0ef2ec711ef6dc1dcf",
  "name": "Ankeet Guha",
  "email": "[email protected]",
  "role": "owner",
  "is_active": true,
  "last_login_at": "2026-06-24T09:00:00.000Z",
  "created_at": "2026-06-01T00:00:00.000Z"
}

Attributes

FieldTypeNotes
idstringmember_<24 hex>. Specific to this org membership.
user_idstringuser_<24 hex>. The same user across all orgs they belong to.
namestring | nullDisplay name. Null if the user never set one.
emailstringEmail address. Used as the canonical identifier.
roleenum"owner" | "admin" | "member".
is_activebooleanDeactivated users can't log in. Their data is preserved.
last_login_atISO 8601 | nullWhen the user last signed in.
created_atISO 8601When the user was added to this org.
📘
Team writes are planned

v1 supports read only. Inviting + removing members goes through the dashboard.

© 2026 AGZ Technologies Private Limited