Team Management
Invite collaborators to your Contensa.ai project and manage their roles and permissions. Team members can be editors, developers, or admins.
Roles & Permissions
| Role | Content | Models | Settings | Billing |
|---|---|---|---|---|
| Owner | Full | Full | Full | Full |
| Admin | Full | Full | Full | View only |
| Developer | Full | Full | View only | None |
| Editor | Create/Edit | View only | None | None |
| Viewer | View only | View only | None | None |
Inviting Team Members
- 1
Go to Team Settings
In your project dashboard, click Team in the left sidebar.
- 2
Click "Invite Member"
Enter the email address of the person you want to invite.
- 3
Select a Role
Choose the appropriate role: Editor, Developer, Admin, or Viewer.
- 4
Send Invitation
Click Send Invite. The invitee will receive an email with a link to join.
- 5
Invitee Accepts
Once they accept, they appear in your team list with the assigned role.
Invitations API
You can also manage invitations programmatically via the REST API.
Send an Invitation
bash
curl -X POST https://api.mybe.app/api/v1/projects/{projectId}/invitations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "colleague@example.com",
"role": "editor"
}'List Pending Invitations
bash
curl https://api.mybe.app/api/v1/projects/{projectId}/invitations \
-H "Authorization: Bearer YOUR_API_KEY"Revoke an Invitation
bash
curl -X DELETE https://api.mybe.app/api/v1/projects/{projectId}/invitations/{invitationId} \
-H "Authorization: Bearer YOUR_API_KEY"Team Size Limits
| Plan | Team Members |
|---|---|
| Free Trial | 1 (owner only) |
| Starter | 3 members |
| Pro | 10 members |
| Enterprise | Unlimited |