Hello, I'm new to appwrite. I'm searching for a way to assign teams to users without sending invitation code. Unfortunately didn't find anything , isn't there a proper way to do this?
You can do this with a server SDK and API key in an Appwrite Function
In my project you can see a example of how implement it
How can we do so? I only find calls to create a team membership via email invitation and update the status with the secret string sent by mail. Am I missing something?
When using the same method with the Server side SDK then no email will be send to the user and the user will be add to the team automatically.
You can ignore url parameter in the server side by setting to any url
Recommended threads
- [SOLVED] curl error Number: 6 — function...
Hello, I invested a lot of time in this error in a fresh install of appwrite 1.8.1 and lasted until fix, this if for helping anyone that can have the same weird...
- android platform invaild origina
It happened today suddenly. Our app says invalid origin. And appwrite cloud says every time we tried to add the app to it: "param platformId" is not optional.
- Team invite - 500 error - no email
When executing ```dart await _repository.teams.createMembership( teamId: event.listId, roles: ['member'], email: event.email, url: 'xxxx', ); ``` I se...