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
| Field | Type | Notes |
|---|---|---|
id | string | member_<24 hex>. Specific to this org membership. |
user_id | string | user_<24 hex>. The same user across all orgs they belong to. |
name | string | null | Display name. Null if the user never set one. |
email | string | Email address. Used as the canonical identifier. |
role | enum | "owner" | "admin" | "member". |
is_active | boolean | Deactivated users can't log in. Their data is preserved. |
last_login_at | ISO 8601 | null | When the user last signed in. |
created_at | ISO 8601 | When 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