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.Tokens.Get(
context.TODO(),
"id",
)
}[
{
"token_id": "<string>",
"scopes": [
"<string>"
],
"created_at": "<string>",
"valid_until": "<string>",
"last_used_at": "<string>"
}
]Retrieves all scim tokens by its connection id.
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.Tokens.Get(
context.TODO(),
"id",
)
}[
{
"token_id": "<string>",
"scopes": [
"<string>"
],
"created_at": "<string>",
"valid_until": "<string>",
"last_used_at": "<string>"
}
]Documentation Index
Fetch the complete documentation index at: https://auth0-sdk8048.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The id of the connection to retrieve its SCIM configuration
The connection's SCIM tokens were retrieved. See Response Schemas for schema.
Cette page vous a-t-elle été utile ?