@squidcloud/client
    Preparing search index...

    Interface ManagementApiKey

    Public representation of a management API key. Never includes the plaintext value or hash.

    interface ManagementApiKey {
        createdAt: string;
        description: string | null;
        id: string;
        lastUsedAt: string | null;
        status: string;
        updatedAt: string;
        userId: string;
    }
    Index

    Properties

    createdAt: string

    ISO-8601 timestamp of creation.

    description: string | null

    Optional human-readable description.

    id: string

    Stable key identifier.

    lastUsedAt: string | null

    ISO-8601 timestamp of the last successful validation, or null if never used.

    status: string

    Lower-case 'active' | 'suspended' | 'deleted'.

    updatedAt: string

    ISO-8601 timestamp of the last status / metadata change.

    userId: string

    User that owns the key.