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

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.connections.scimConfiguration.get("id");
}
main();
{
  "connection_id": "<string>",
  "connection_name": "<string>",
  "strategy": "<string>",
  "tenant_name": "<string>",
  "user_id_attribute": "<string>",
  "mapping": [
    {
      "auth0": "<string>",
      "scim": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_on": "2023-11-07T05:31:56Z"
}

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 configuration was retrieved. See Response Schemas for schema.

connection_id
string
requis

The connection's identifier

connection_name
string
requis

The connection's name

strategy
string
requis

The connection's strategy

tenant_name
string
requis

The tenant's name

user_id_attribute
string
requis

User ID attribute for generating unique user ids

mapping
object[]
requis

The mapping between auth0 and SCIM

created_at
string<date-time>
requis

The ISO 8601 date and time the SCIM configuration was created at

updated_on
string<date-time>
requis

The ISO 8601 date and time the SCIM configuration was last updated on