メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
connections
/
{id}
/
scim-configuration
/
tokens
Go
package example

import (
    client "github.com/auth0/go-auth0/management/client"
    option "github.com/auth0/go-auth0/management/option"
    context "context"
)

func do() () {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    client.Connections.ScimConfiguration.Tokens.Get(
        context.TODO(),
        "id",
    )
}
[
  {
    "token_id": "<string>",
    "scopes": [
      "<string>"
    ],
    "created_at": "<string>",
    "valid_until": "<string>",
    "last_used_at": "<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 SCIM configuration

レスポンス

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