Member Junction
    Preparing search index...

    Interface CreateAPIKeyResult

    Result of creating a new API key

    interface CreateAPIKeyResult {
        APIKeyId?: string;
        Error?: string;
        RawKey?: string;
        Success: boolean;
    }
    Index

    Properties

    APIKeyId?: string

    The database ID of the created API key

    Error?: string

    Error message if creation failed

    RawKey?: string

    The raw API key (only returned on success, show to user once)

    Success: boolean

    Whether creation succeeded