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

    Interface PayoutBatch

    A submitted payout batch and its per-recipient sub-orders.

    interface PayoutBatch {
        merchantBatchNo: string;
        status: string;
        subOrders: Record<string, unknown>[];
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown

      Additional provider-specific fields passed through untyped.

    Index

    Properties

    merchantBatchNo: string

    The batch reference id — pass to Payouts.get to poll its status.

    status: string

    Overall batch status string (e.g. processing/settled/failed).

    subOrders: Record<string, unknown>[]

    Per-recipient sub-order records (one per PayoutItem), passed through untyped.