Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface CreateTokenExchangeProfileRequestContent

    {
    * name: "name",
    * subject_token_type: "subject_token_type",
    * action_id: "action_id"
    * }
    interface CreateTokenExchangeProfileRequestContent {
        name: string;
        subject_token_type: string;
        action_id: string;
    }
    Index

    Properties

    name: string

    Friendly name of this profile.

    subject_token_type: string

    Subject token type for this profile. When receiving a token exchange request on the Authentication API, the corresponding token exchange profile with a matching subject_token_type will be executed. This must be a URI.

    action_id: string

    The ID of the Custom Token Exchange action to execute for this profile, in order to validate the subject_token. The action must use the custom-token-exchange trigger.