Skip to main content

List Product Members

GET 

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

This endpoint returns the list of Members that belongs to the given Product, identified by the productId parameter.

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/members");
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!