Batch Management

Efficiently manage transaction settlements by grouping approved payments into batches for streamlined funding and reconciliation.

PCE allows you to process multiple individual transactions as a single group, called a batch. These batches are opened and closed at regular intervals (daily, weekly, or another defined cycle).

Batch Management defines how transactions are grouped before settlement. At the end of a business day (or defined cycle), all captured transactions are collected into a batch, which is then processed for settlement.

Key Highlights:

  • Transactions are grouped into a batch through Batch Closure. Only settled batches are eligible for funding.
  • Automatically or manually group transactions into daily settlement batches.
  • Monitor batch statuses — Open or Closed.
  • Control batch timing through merchant-level or terminal-specific settings.
  • Retrieve and review batch and transaction details via API.

Benefits:

  • Clear visibility into daily sales and settlement activity.
  • Simplified reconciliation with processor and funding reports.
  • Faster identification of any discrepancies or missing transactions.

How It Works

  • Transactions are approved throughout the day.
  • Batches automatically close at the configured auto-close time (default: 4:00 AM UTC).
  • Settled batches are submitted to the processor for fund transfer.
  • A new batch is automatically created upon the next approved transaction.
📘

Best Practice: Close batches daily to ensure timely settlements and prevent funding delays.


Batch Configuration

The rules and configurations determine how and when credit card transactions are grouped (or “batched”) together for settlement. Instead of processing each transaction individually, batching allows multiple transactions to be processed and settled together, typically once per day.

This is common in payment processing systems to improve efficiency, reduce fees, and streamline reconciliation.

Merchants can configure batching behavior based on their operational needs.

Setting

Description

Default Behavior

Auto-Batch Time

Defines the time when open batches close automatically.

Enabled at 4:00 AM UTC. * Any transactions captured during the day will be grouped into a batch and automatically closed at this time.

Terminal Auto-Close

Allows terminals to close their own batches separately.

Enabled per device when source = terminal

Manual Close

Lets merchants manually close batches via API or dashboard. Failure to close a batch manually may result in:

  • Delayed funding
  • Higher interchange fees
  • Increased risk of chargebacks

Disabled (auto-close used by default)



Batch Management Operations

Below are the API endpoints used for managing batches.

1. Retrieve Batches for a Merchant

Retrieve a list of all batches for a merchant using either of the following endpoints:

  • Basic Request: Use the GET /checkout/v3/batch?merchantid={{merchantId}} endpoint to retrieve all batches associated with the merchant.
  • Filtered Request: Use the GET /checkout/v3/batch?merchantid={{merchantId}}&startDate={{startDate}}&endDate={{endDate}}&limit={{limit}}&offset={{offset}}&dateRange={{dateRange}}&status={{status}} endpoint to retrieve batches filtered by date range, status, and pagination parameters.
ParameterRequiredDescription
merchantidUnique identifier of the merchant.
startDateStart date/time for batch search in ISO 8601 format.
endDateEnd date/time for batch search in ISO 8601 format.
limitMaximum number of records to return per request.
offsetRecord offset for pagination.
dateRangeTime period filter (Today, Week, Month, Custom).
statusBatch status filter (Open or Closed).

2. Close an Open Batch

Use the PUT /checkout/v3/batch/{batchId} API endpoint to close a specific batch to initiate settlement.

ParameterRequiredDescription
batchIdUnique ID of the batch to close

3. Get Batch by ID

Use the GET /checkout/v3/batch?batchId={batchId} to Retrieve complete details for a specific batch using its ID.

Key Response Fields:

FieldDescription
statusBatch status (Open, Pending, Closed)
opened / closedDate/time the batch was opened or closed
saleCount, saleAmountCount and amount of sale transactions
netTip, netSurchargeTip and surcharge totals for the batch
processorNamePayment processor handling the batch
deviceSource device or API client that initiated transactions

4. Retrieve Batch Transactions

Use the GET /checkout/v3/batchpayment?id={batchId} to fetch detailed transaction information for a batch.

Key Response Fields:

FieldDescription
idUnique transaction ID
amountTransaction amount
paymentTokenThe secure Transaction Token. Use this for follow-up actions like refunds or adjustments after the transaction has settled.
tenderTypeType of payment (e.g., Card)
authCodeAuthorization code from issuer
statusTransaction status (e.g., Settled)
cardAccountEntire details of the card used within the transaction.
invoice, customerCodeReference and customer identifiers

Batch Lifecycle

The batch lifecycle outlines how transactions move from authorization to settlement, helping merchants track the status of their daily payment batches.

StageDescription
OpenBatch is collecting approved transactions.
ClosedBatch has been finalized and sent for settlement.

Troubleshooting

IssuePossible CauseResolution
Batch not closing automaticallyAuto-close disabled or time not set correctlyVerify batch settings or close manually via API
Missing transactionsTransaction not approved before batch closureEnsure all sales complete before batch close
Duplicate batchesDevice ID misconfigurationCheck unique Device IDs for terminal batching

See Also


Pending Items


© 2025 Priority Technology Holdings LLC. All rights reserved.