メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
connections
/
{id}
/
scim-configuration
Go
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.Connections.ScimConfiguration.Get(
        context.TODO(),
        "id",
    )
}
{
  "connection_id": "<string>",
  "connection_name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "mapping": [
    {
      "auth0": "<string>",
      "scim": "<string>"
    }
  ],
  "strategy": "<string>",
  "tenant_name": "<string>",
  "updated_on": "2023-11-07T05:31:56Z",
  "user_id_attribute": "<string>"
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

SCIM 構成を取得する接続の id

レスポンス

接続の SCIM 構成を取得しました。スキーマについては Response Schemas を参照してください。

connection_id
string
必須

この接続の識別子

connection_name
string
必須

この接続の名前

created_at
string<date-time>
必須

SCIM 構成の作成日時(ISO 8601 形式)

mapping
object[]
必須

Auth0 と SCIM の間のマッピング

strategy
string
必須

この接続のストラテジー

tenant_name
string
必須

このテナントの名前

updated_on
string<date-time>
必須

SCIM 設定が最後に更新された日時(ISO 8601 形式)

user_id_attribute
string
必須

一意のユーザー ID を生成するためのユーザー ID 属性