C#
using Auth0.ManagementApi;
using System.Threading.Tasks;
public partial class Examples
{
public async Task Example() {
var client = new ManagementClient(
token: "<token>"
);
await client.Users.FederatedConnectionsTokensets.ListAsync(
"id"
);
}
}package example
import (
context "context"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
client.Users.FederatedConnectionsTokensets.List(
context.TODO(),
"id",
)
}package com.example.usage;
import com.auth0.client.mgmt.ManagementApi;
public class Example {
public static void main(String[] args) {
ManagementApi client = ManagementApi
.builder()
.token("<token>")
.build();
client.users().federatedConnectionsTokensets().list("id");
}
}<?php
namespace Example;
use Auth0\SDK\API\Management\Management;
$client = new Management(
token: '<token>',
);
$client->users->federatedConnectionsTokensets->list(
'id',
);from auth0.management import ManagementClient
client = ManagementClient(
token="<token>",
)
client.users.federated_connections_tokensets.list(
id="id",
)require "auth0"
client = Auth0::Management.new(token: "<token>")
client.users.federated_connections_tokensets.list(id: "id")import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.users.federatedConnectionsTokensets.list("id");
}
main();import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.users.federatedConnectionsTokensets.list("id");
}
main();curl --request GET \
--url https://{tenantDomain}/api/v2/users/{id}/federated-connections-tokensets \
--header 'Authorization: Bearer <token>'[
{
"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"
}
]Get tokensets for a user
List active federated connections tokensets for a provided user
GET
https://{tenantDomain}/api/v2
/
users
/
{id}
/
federated-connections-tokensets
C#
using Auth0.ManagementApi;
using System.Threading.Tasks;
public partial class Examples
{
public async Task Example() {
var client = new ManagementClient(
token: "<token>"
);
await client.Users.FederatedConnectionsTokensets.ListAsync(
"id"
);
}
}package example
import (
context "context"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
client.Users.FederatedConnectionsTokensets.List(
context.TODO(),
"id",
)
}package com.example.usage;
import com.auth0.client.mgmt.ManagementApi;
public class Example {
public static void main(String[] args) {
ManagementApi client = ManagementApi
.builder()
.token("<token>")
.build();
client.users().federatedConnectionsTokensets().list("id");
}
}<?php
namespace Example;
use Auth0\SDK\API\Management\Management;
$client = new Management(
token: '<token>',
);
$client->users->federatedConnectionsTokensets->list(
'id',
);from auth0.management import ManagementClient
client = ManagementClient(
token="<token>",
)
client.users.federated_connections_tokensets.list(
id="id",
)require "auth0"
client = Auth0::Management.new(token: "<token>")
client.users.federated_connections_tokensets.list(id: "id")import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.users.federatedConnectionsTokensets.list("id");
}
main();import { ManagementClient } from "auth0";
async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.users.federatedConnectionsTokensets.list("id");
}
main();curl --request GET \
--url https://{tenantDomain}/api/v2/users/{id}/federated-connections-tokensets \
--header 'Authorization: Bearer <token>'[
{
"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
bearerAuthoAuth2ClientCredentials
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
User identifier
Maximum string length:
300Get the First Confirmed Multi-factor Authentication (MFA) Enrollment
Previous
Deletes a tokenset for federated connections by id.
Next
⌘I