List Assistants This example assumes using Flowise; is in scope and apiKey contains your Flowise API key. 1 2 3 4 5 6 7 8using var client = new FlowiseClient(apiKey); var assistants = await client.Assistants.ListAssistantsAsync(); foreach (var assistant in assistants) { Console.WriteLine($"Assistant: {assistant.Id} (Credential: {assistant.Credential})"); }