Skip to main content
The doMiniSettlement method is used to settle transactions.
Supported processors: CG, PC.

Request

JSON-RPC 2.0All methods in TweezerComm follow a JSON-RPC 2.0 structure. See Integration for more details on how the requests are structured and sent.
In the request, ensure to configure the following:
  • The method field must be set to doMiniSettlement.
  • The service must be set to ashrait in the params.
{
    "jsonrpc":"2.0",
    "method":"doMiniSettlement",
    "params":[
        "ashrait"
    ],
    "id":1
}

Response

A successful request will return the following response:
{
    "jsonrpc": "2.0",
    "result": {
        "statusCode": 0,
        "ackNumber": "1234567",
        "queriedTransactions": ["12345","12345"]
    },
    "id": 1
}

Response Parameters

The table below describes the response parameters for this method.
Name                Type            Description                                                                  
statusCode          integer          Operation status. A value of 0 indicates success. All other values are errors.
ackNumber          string          The processor’s reference number.                                            
queriedTransactionsarray of stringsA list of successfully transmitted transaction UIDs.