Swift: Sign out a user (admin)

Signs out a specific user by revoking their session(s), using that user's access token (JWT).

Examples

Sign out a user

try await supabase.auth.admin.signOut(jwt: jwt)

Sign out a user with a scope

try await supabase.auth.admin.signOut(jwt: jwt, scope: .others)