Skip to main content
GET
/
users
/
{id}
/
federated-connections-tokensets
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.users.federatedConnectionsTokensets.list("id");
}
main();
[
  {
    "id": "<string>",
    "connection": "<string>",
    "scope": "<string>",
    "expires_at": "2023-11-07T05:31:56Z",
    "issued_at": "2023-11-07T05:31:56Z",
    "last_used_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

User identifier

Maximum string length: 300

Response

Flows successfully retrieved.

id
string
connection
string
scope
string
expires_at
string<date-time> | null
issued_at
string<date-time>
last_used_at
string<date-time> | null