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

RoleContentModelsSettingsBilling
OwnerFullFullFullFull
AdminFullFullFullView only
DeveloperFullFullView onlyNone
EditorCreate/EditView onlyNoneNone
ViewerView onlyView onlyNoneNone

Inviting Team Members

  1. 1

    Go to Team Settings

    In your project dashboard, click Team in the left sidebar.

  2. 2

    Click "Invite Member"

    Enter the email address of the person you want to invite.

  3. 3

    Select a Role

    Choose the appropriate role: Editor, Developer, Admin, or Viewer.

  4. 4

    Send Invitation

    Click Send Invite. The invitee will receive an email with a link to join.

  5. 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

PlanTeam Members
Free Trial1 (owner only)
Starter3 members
Pro10 members
EnterpriseUnlimited

Next Steps