absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Interface AbsolutePayConfig

    Configuration for constructing an AbsolutePay client.

    interface AbsolutePayConfig {
        apiKey: string;
        baseUrl?: string;
        fetch?: typeof fetch;
        sandbox?: boolean;
        signingSecret?: string;
        timeoutMs?: number;
    }
    Index

    Properties

    apiKey: string

    App API key (Bearer). Server-side only — never ship it to a browser.

    baseUrl?: string

    Override the API origin entirely (e.g. a self-hosted gateway). Takes precedence over sandbox.

    fetch?: typeof fetch

    Injectable fetch (tests / custom agents). Defaults to global fetch.

    sandbox?: boolean

    Target the AbsolutePay sandbox (https://sandbox-api.absolutepay.io) instead of production. Default false → production (https://api.absolutepay.io). Ignored when baseUrl is set.

    signingSecret?: string

    Request signing secret (apisign_…). Required for app keys: every request is HMAC-signed.

    timeoutMs?: number

    Per-request timeout (ms). Default 30000.