Passer au contenu principal
GET
/
connections
/
{id}
/
scim-configuration
/
tokens
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.connections.scimConfiguration.tokens.get("id");
}
main();
[
  {
    "token_id": "<string>",
    "scopes": [
      "<string>"
    ],
    "created_at": "<string>",
    "valid_until": "<string>",
    "last_used_at": "<string>"
  }
]

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

The id of the connection to retrieve its SCIM configuration

Réponse

The connection's SCIM tokens were retrieved. See Response Schemas for schema.

token_id
string

The token's identifier

scopes
string[]

The scopes of the scim token

The token's scope

created_at
string

The token's created at timestamp

valid_until
string

The token's valid until timestamp

last_used_at
string

The token's last used at timestamp