Properties
NAME | TYPE | DESCRIPTION |
$id | string | Membership ID. |
$createdAt | string | Membership creation date in ISO 8601 format. |
$updatedAt | string | Membership update date in ISO 8601 format. |
userId | string | User ID. |
userName | string | User name. |
userEmail | string | User email address. |
teamId | string | Team ID. |
teamName | string | Team name. |
invited | string | Date, the user has been invited to join the team in ISO 8601 format. |
joined | string | Date, the user has accepted the invitation to join the team in ISO 8601 format. |
confirm | boolean | User confirmation status, true if the user has joined the team or false otherwise. |
mfa | boolean | Multi factor authentication status, true if the user has MFA enabled or false otherwise. |
roles | array | User list of roles |
Example
JSON
{
"$id": "5e5ea5c16897e",
"$createdAt": "2020-10-15T06:38:00.000+00:00",
"$updatedAt": "2020-10-15T06:38:00.000+00:00",
"userId": "5e5ea5c16897e",
"userName": "John Doe",
"userEmail": "john@appwrite.io",
"teamId": "5e5ea5c16897e",
"teamName": "VIP",
"invited": "2020-10-15T06:38:00.000+00:00",
"joined": "2020-10-15T06:38:00.000+00:00",
"confirm": false,
"mfa": false,
"roles": [
"owner"
]
}
JSON
{
"_id": "5e5ea5c16897e",
"_createdAt": "2020-10-15T06:38:00.000+00:00",
"_updatedAt": "2020-10-15T06:38:00.000+00:00",
"userId": "5e5ea5c16897e",
"userName": "John Doe",
"userEmail": "john@appwrite.io",
"teamId": "5e5ea5c16897e",
"teamName": "VIP",
"invited": "2020-10-15T06:38:00.000+00:00",
"joined": "2020-10-15T06:38:00.000+00:00",
"confirm": false,
"mfa": false,
"roles": [
"owner"
]
}