Skip to content

Ping Server

This example assumes using Flowise; is in scope and apiKey contains your Flowise API key.

1
2
3
4
5
using var client = new FlowiseClient(apiKey);

string pong = await client.Ping.PingServerAsync();

Console.WriteLine($"Ping response: {pong}");