Skip to main content
Version: Next

Server Metadata

GET 

/v2/

The server metadata endpoint provides information about the server. A server metadata request is made with an HTTP GET to a server metadata endpoint. In the corresponding response the HTTP body contains the Server Metadata Response JSON Object or the Server Metadata Response JSON Error Object.

Responses

OK

Schema
    namestringrequired
    versionstringrequired
    extensionsstring[]required
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://deploy-preview-601--elastic-nobel-0aef7a.netlify.app/v2/");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear

Click the Send API Request button above and see the response here!