Skip to main content
GET
https://{tenantDomain}/api/v2
/
connections
/
{id}
/
clients
C#
using Auth0.ManagementApi;
using System.Threading.Tasks;
using Auth0.ManagementApi.Connections;

public partial class Examples
{
    public async Task Example() {
        var client = new ManagementClient(
            token: "<token>"
        );

        await client.Connections.Clients.GetAsync(
            id: "id",
            request: new GetConnectionEnabledClientsRequestParameters {
                Take = 1,
                From = "from"
            }
        );
    }

}
{
  "clients": [
    {
      "client_id": "<string>"
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The id of the connection for which enabled clients are to be retrieved

Query Parameters

take
integer

Number of results per page. Defaults to 50.

Required range: 1 <= x <= 1000
from
string

Optional Id from which to start selection.

Maximum string length: 1000

Response

Success

clients
object[]
required

Clients for which the connection is enabled

next
string

Encoded next token