@runloop/api-client - v1.31.0
    Preparing search index...

    Interface CustomHeader

    An additional header applied to upstream requests alongside the primary credential. The value comes from an account secret or a literal string; exactly one of 'secret' and 'value' must be set.

    interface CustomHeader {
        name: string;
        secret?: string | null;
        value?: string | null;
    }
    Index

    Properties

    Properties

    name: string

    The header name (e.g., 'DD-APPLICATION-KEY').

    secret?: string | null

    Account secret providing the header value. Accepts a secret name or 'sec*' id on writes; reads always return the 'sec*' id.

    value?: string | null

    Literal header value. Stored in plaintext and returned by reads - use 'secret' for credentials or other sensitive values.