Skip to main content
Module

x/appwrite/mod.ts>Teams#createMembership

[READ-ONLY] Official Appwrite Deno SDK 🦕
Go to Latest
method Teams.prototype.createMembership
Re-export
import { Teams } from "https://deno.land/x/appwrite@10.0.0/mod.ts";

Create team membership

Invite a new member to join your team. Provide an ID for existing users, or invite unregistered users using an email or phone number. If initiated from a Client SDK, Appwrite will send an email or sms with a link to join the team to the invited user, and an account will be created for them if one doesn't exist. If initiated from a Server SDK, the new member will be added automatically to the team.

You only need to provide one of a user ID, email, or phone number. Appwrite will prioritize accepting the user ID > email > phone number if you provide more than one of these parameters.

Use the url parameter to redirect the user from the invitation email to your app. After the user is redirected, use the Update Team Membership Status endpoint to allow the user to accept the invitation to the team.

Please note that to avoid a Redirect Attack Appwrite will accept the only redirect URLs under the domains you have added as a platform on the Appwrite Console.

Parameters

teamId: string
roles: string[]
optional
email: string
optional
userId: string
optional
phone: string
optional
url: string
optional
name: string