Request body for creating an Auth0 connection.

interface PostAuth0ConnectionBody {
    displayName?: string;
    isDomainConnection?: boolean;
    metadata?: Record<string, any>;
    name: string;
    options: SAMLOptions;
    realms?: string[];
    showAsButton?: boolean;
    strategy: "samlp";
}

Hierarchy (View Summary)

Properties

displayName?: string
isDomainConnection?: boolean
metadata?: Record<string, any>
name: string
options: SAMLOptions
realms?: string[]
showAsButton?: boolean
strategy: "samlp"