List Product Members
GEThttps://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
- 200
- 400
- 404
- 429
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
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
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear