1
0
Fork 0
mirror of synced 2024-08-21 13:11:51 +12:00
appwrite/app/sdks/python/docs/examples/teams/delete-membership.md
2020-02-15 19:53:12 +02:00

272 B

from appwrite.client import Client from appwrite.services.teams import Teams

client = Client()

(client .set_project('5df5acd0d48c2') .set_key('919c2d18fb5d4...a2ae413da83346ad2') )

teams = Teams(client)

result = teams.delete_membership('[TEAM_ID]', '[INVITE_ID]')