The Member object
A team on the Voxity platform consists of all individuals with access to the system, grouped for collaborative work. Each team member is assigned one of three roles: Owner, Editor, or Viewer, which determine their permissions and level of access.
Owner: Has full administrative control, including managing team settings, permissions, and advanced platform operations.
Editor: Can perform most operational tasks but with limited administrative privileges.
Viewer: Has read-only access to view information without making changes.
These roles ensure that team members can contribute effectively while maintaining appropriate levels of access and security across the platform.
The following fields are included in every member object on the Voxity platform and define the structure of a member.
{
"id": "gke38NZt7KZK88cgOoOXXrEf9b32",
"displayName": "Alex Johnson",
"email": "[email protected]",
"phoneNumber": "+15555550100",
"role": "viewer",
"createdAt": "2024-02-17T02:44:19.864Z",
"updatedAt": "2024-02-17T20:14:17.788Z"
}Attributes
id (string): A unique identifier for the member. Example:
"gke38NZt7KZK88cgOoOXXrEf9b32"displayName (string): The name displayed for the member. Example:
"Alex Johnson"email (string): The email address associated with the member. Example:
"[email protected]"phoneNumber (string): The phone number of the member. Example:
"+15555550100"role (string): The role assigned to the member within the team. Valid values are
"owner","editor", or"viewer". Example:"viewer"createdAt (string): The ISO 8601 timestamp when the member was created. Example:
"2024-02-17T02:44:19.864Z"updatedAt (string): The ISO 8601 timestamp when the member was last updated. Example:
"2024-02-17T20:14:17.788Z"
Last updated