Langfuse JS/TS SDKs
    Preparing search index...

    Interface CreateApiKeyRequest

    {
    * note: undefined,
    * publicKey: undefined,
    * secretKey: undefined
    * }
    interface CreateApiKeyRequest {
        note?: string;
        publicKey?: string;
        secretKey?: string;
    }
    Index

    Properties

    note?: string

    Optional note for the API key

    publicKey?: string

    Optional predefined public key. Must start with 'pk-lf-'. If provided, secretKey must also be provided.

    secretKey?: string

    Optional predefined secret key. Must start with 'sk-lf-'. If provided, publicKey must also be provided.