doMiniSettlement
The doMiniSettlement
method is used to settle transactions.
Supported processors: CG, PC.
The client can also implement this action by calling doTransactionPhase1
with the appropriate tranCode.
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 todoMiniSettlement
. - The service must be set to
ashrait
in theparams
.
{
  "jsonrpc":"2.0",
  "method":"doMiniSettlement",
  "params":[
    "ashrait"
  ],
  "id":1
}
Request Parameters
This method does not require any parameters beyond the standard service name.
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.                       |
queriedTransactions | array of strings | A list of successfully transmitted transaction UIDs. Â Â Â Â Â Â Â Â Â Â Â Â Â |
Updated about 3 hours ago