SDK
SDK C# v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

GetConfigAsync #

Returns the current Kuzzle configuration.

This route should only be accessible to administrators, as it might returns sensitive information about the backend.

Arguments #

Copied to clipboard!
async Task<JObject> GetConfigAsync()

Return #

Returns server configuration as a JObject.

Usage #

Copied to clipboard!
JObject config = await kuzzle.Server.GetConfigAsync();
Console.WriteLine("Kuzzle Server configuration: " +
  config.ToString(Formatting.None));