package example
import (
context "context"
client "github.com/auth0/go-auth0/management/management/client"
scimconfiguration "github.com/auth0/go-auth0/management/management/connections/scimconfiguration"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &scimconfiguration.CreateScimTokenRequestContent{}
client.Connections.ScimConfiguration.Tokens.Create(
context.TODO(),
"id",
request,
)
}{
"token_id": "<string>",
"token": "<string>",
"scopes": [
"<string>"
],
"created_at": "<string>",
"valid_until": "<string>"
}Create a scim token for a scim client.
package example
import (
context "context"
client "github.com/auth0/go-auth0/management/management/client"
scimconfiguration "github.com/auth0/go-auth0/management/management/connections/scimconfiguration"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &scimconfiguration.CreateScimTokenRequestContent{}
client.Connections.ScimConfiguration.Tokens.Create(
context.TODO(),
"id",
request,
)
}{
"token_id": "<string>",
"token": "<string>",
"scopes": [
"<string>"
],
"created_at": "<string>",
"valid_until": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://auth0-feat-testing-docs.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 create its SCIM token
The connection's SCIM token was created. See Response Schemas for schema.
Cette page vous a-t-elle été utile ?