Type Alias ApiKey

type ApiKey = {
    created?: string;
    createdByUser: string;
    description: string;
    expiry: string;
    id: string;
    lastUpdated?: string;
    status: "active" | "expired" | "revoked";
    sub: string;
    subType: "user" | "externalClient";
    tenantId: string;
}
Index

Properties

created?: string

When the API key was created.

createdByUser: string
description: string
expiry: string
id: string
lastUpdated?: string
status: "active" | "expired" | "revoked"
sub: string
subType: "user" | "externalClient"
tenantId: string