Type Alias ApiKeyWithToken

type ApiKeyWithToken = {
    created?: string;
    createdByUser: string;
    description: string;
    expiry: string;
    id: string;
    lastUpdated?: string;
    status: "active" | "expired" | "revoked";
    sub: string;
    subType: "user";
    tenantId: string;
    token: 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"
tenantId: string
token: string