Type Alias CreateJWTAuthPayload

Payload for creating an identity provider using JWT authentication.

type CreateJWTAuthPayload = {
    clockToleranceSec?: number;
    description?: string;
    options: { issuer: string; staticKeys: { kid: string; pem: string }[] };
    protocol: "jwtAuth";
    provider: "external";
    tenantIds?: string[];
}
Index

Properties

clockToleranceSec?: number

There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set.

description?: string
options: { issuer: string; staticKeys: { kid: string; pem: string }[] }

Type Declaration

  • issuer: string

    The JWT issuer.

  • staticKeys: { kid: string; pem: string }[]
protocol: "jwtAuth"
provider: "external"
tenantIds?: string[]