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

    Interface InvoiceUpdate

    PATCH body for a checkout/invoice — every field optional. Omit a field to leave it unchanged; send null to CLEAR it (redirectUrl/expiresAt/description).

    interface InvoiceUpdate {
        description?: string | null;
        expiresAt?: number | null;
        paused?: boolean;
        redirectUrl?: string | null;
    }
    Index

    Properties

    description?: string | null

    Free-text description, or null to clear.

    expiresAt?: number | null

    Link expiry (epoch ms), or null to clear.

    paused?: boolean

    Live/paused — a paused link won't accept payment.

    redirectUrl?: string | null

    http(s) merchant return URL, or null to clear.