action appwrite_teams_delete_membership { label: "Delete Team Membership" description: "This endpoint allows a user to leave a team or for a team owner to delete the membership of any other team member. You can also use this endpoint to delete a user membership even if it is not accepted." provider: appwrite method: DELETE path: "/teams/{teamId}/memberships/{membershipId}" encoding: json input: { type: "object" properties: { membershipId: { type: "string" } teamId: { type: "string" } } required: ["membershipId", "teamId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }