メインコンテンツへスキップ
GET
/
connections
/
{id}
/
clients
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.connections.clients.get("id", {
        take: 1,
        from: "from",
    });
}
main();
{
  "clients": [
    {
      "client_id": "<string>"
    }
  ],
  "next": "<string>"
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

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

クエリパラメータ

take
integer

Number of results per page. Defaults to 50.

必須範囲: 1 <= x <= 1000
from
string

Optional Id from which to start selection.

Maximum string length: 1000

レスポンス

Success

clients
object[]
必須

Clients for which the connection is enabled

next
string

Encoded next token