Skip to main content

List Configs

GET 

https://api.configcat.com/v1/products/:productId/configs

This endpoint returns the list of the Configs that belongs to the given Product identified by the productId parameter, which can be obtained from the List Products endpoint.

Request

Responses

Authorization: http

name: Basictype: httpdescription: To authenticate with the API you have to fill the `Authorization` HTTP request header with your Public API credentials.

You can create your credentials on the <a target="_blank" href="https://app.configcat.com/my-account/public-api-credentials">Public API credentials management page</a>.scheme: basic
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.configcat.com/v1/products/:productId/configs");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.configcat.com
Auth
Parameters
— pathrequired
ResponseClear

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