1
0
Fork 0
mirror of synced 2024-09-05 04:11:10 +12:00
appwrite/app/sdks/client-swift/docs/examples/teams/update-membership-status.md
2020-08-30 19:23:15 +03:00

423 B

/// Swift Appwrite SDK /// Produced by Appwrite SDK Generator ///

var client: Client = Client()

client .setEndpoint(endpoint: "https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject(value: "5df5acd0d48c2") // Your project ID

var teams: Teams = Teams(client: client);

var result = teams.updateMembershipStatus(_teamId: "[TEAM_ID]", _inviteId: "[INVITE_ID]", _userId: "[USER_ID]", _secret: "[SECRET]");