@edgible-team/sdk
    Preparing search index...

    Interface CreateApplicationApiKeyResult

    Create-key result. The handler returns a sanitized subset of the row.

    interface CreateApplicationApiKeyResult {
        apiKey: string;
        keyData: Pick<
            ApplicationApiKeyData,
            | "id"
            | "name"
            | "keyPrefix"
            | "createdAt"
            | "expiresAt"
            | "enabled"
            | "createdBy",
        >;
    }
    Index

    Properties

    Properties

    apiKey: string

    The plaintext API key — only returned once.

    keyData: Pick<
        ApplicationApiKeyData,
        | "id"
        | "name"
        | "keyPrefix"
        | "createdAt"
        | "expiresAt"
        | "enabled"
        | "createdBy",
    >