@bondi-labs/integration-sdk - v0.0.2
    Preparing search index...

    Interface VerifyRequestOptions

    Options accepted by verifyRequest.

    interface VerifyRequestOptions {
        action: string | undefined;
        maxAgeSeconds?: number;
        rawBody: string;
        signature: string | undefined;
        timestamp: string | undefined;
        token: string;
    }
    Index

    Properties

    action: string | undefined

    Value from x-bondi-action header.

    maxAgeSeconds?: number

    Replay window in seconds. Default 300 (5 minutes).

    rawBody: string

    Raw request body as bytes/string received — never re-serialized.

    signature: string | undefined

    Value from x-bondi-signature header.

    timestamp: string | undefined

    Value from x-bondi-timestamp header.

    token: string

    Integration token shared with Bondi (HMAC key).