## Remove a member from a workspace `workspace_admin.members.remove(profile_id, **kwargs) -> void` **delete** `/v1/account/workspaces/{workspaceId}/members/{profileId}` Revokes a member's access by deactivating their actor; the member is immediately cut off. The underlying profile is not deleted. Admin only. ### Parameters - `workspace_id: String` - `profile_id: String` ### Example ```ruby require "cadenya" cadenya = Cadenya::Client.new(api_key: "My API Key") result = cadenya.workspace_admin.members.remove("profileId", workspace_id: "workspaceId") puts(result) ```