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

    Interface CreateTokenExchangeProfileResponseContent

    interface CreateTokenExchangeProfileResponseContent {
        id?: string;
        name?: string;
        subject_token_type?: string;
        action_id?: string;
        type?: "custom_authentication";
        created_at?: string;
        updated_at?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    id?: string

    The unique ID of the token exchange profile.

    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.

    type?: "custom_authentication"
    created_at?: string

    The time when this profile was created.

    updated_at?: string

    The time when this profile was updated.