メインコンテンツへスキップ
GET
/
connections
/
{id}
/
directory-provisioning
Get a directory provisioning configuration
curl --request GET \
  --url https://{tenantDomain}/api/v2/connections/{id}/directory-provisioning \
  --header 'Authorization: Bearer <token>'
{
  "connection_id": "<string>",
  "connection_name": "<string>",
  "strategy": "<string>",
  "mapping": [
    {
      "auth0": "<string>",
      "idp": "<string>"
    }
  ],
  "synchronize_automatically": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "synchronize_groups": "all",
  "last_synchronization_at": "2023-11-07T05:31:56Z",
  "last_synchronization_status": "<string>",
  "last_synchronization_error": "<string>"
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

The id of the connection to retrieve its directory provisioning configuration

レスポンス

The connection's directory provisioning configuration. See Response Schemas for schema.

connection_id
string
必須

The connection's identifier

connection_name
string
必須

The connection's name

strategy
string
必須

The connection's strategy

mapping
object[]
必須

The mapping between Auth0 and IDP user attributes

Minimum array length: 1
synchronize_automatically
boolean
必須

Whether periodic automatic synchronization is enabled

created_at
string<date-time>
必須

The timestamp at which the directory provisioning configuration was created

updated_at
string<date-time>
必須

The timestamp at which the directory provisioning configuration was last updated

synchronize_groups
enum<string>

Group synchronization configuration

利用可能なオプション:
all,
off
last_synchronization_at
string<date-time>

The timestamp at which the connection was last synchronized

last_synchronization_status
string

The status of the last synchronization

last_synchronization_error
string

The error message of the last synchronization, if any