Passer au contenu principal
POST
https://{tenantDomain}/api/v2
/
self-service-profiles
/
{id}
/
sso-ticket
Go
package example

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

func do() () {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    client.SelfServiceProfiles.SsoTicket.Create(
        context.TODO(),
        "id",
        &selfserviceprofiles.CreateSelfServiceProfileSsoTicketRequestContent{},
    )
}
{
  "ticket": "<string>"
}

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

The id of the self-service profile to retrieve

Corps

connection_id
string<connection-id>

If provided, this will allow editing of the provided connection during the SSO Flow

connection_config
object

If provided, this will create a new connection for the SSO flow with the given configuration

enabled_clients
string[]

List of client_ids that the connection will be enabled for.

enabled_organizations
object[]

List of organizations that the connection will be enabled for.

ttl_sec
integer

Number of seconds for which the ticket is valid before expiration. If unspecified or set to 0, this value defaults to 432000 seconds (5 days).

Plage requise: 0 <= x <= 432000
domain_aliases_config
object

Configuration for the setup of the connection’s domain_aliases in the self-service SSO flow.

provisioning_config
object

Configuration for the setup of Provisioning in the self-service flow.

use_for_organization_discovery
boolean

Indicates whether a verified domain should be used for organization discovery during authentication.

Réponse

SSO Access Ticket successfully created.

ticket
string

The URL for the created ticket.