List Audits
This API will list all the Bank to NetXD, NetXD to Visa, UI audits, and Widget audits.
Method: POST
Endpoint:
http://localhost:4041/rpc/AuditService/ListAudits
Request
Payload Parameters
Parameter | Type | Mandatory | Description |
---|---|---|---|
pageNumber | integer | Yes | It is the page number of the audit page. |
pageSize | integer | Yes | This is the number of audits displayed per page. |
fromDate | string | No | From date of the audits that should be displayed. |
toDate | string | No | To date of the audits that should be displayed. |
referenceNumber | string | No | Reference number of the transactions. |
endToEndID | string | No | EndToEnd ID of the transactions. |
batchId | string | No | Batch ID of the transaction. |
count | boolean | No | Count of the transactions. |
method | string | No | Method name. |
searchFilter | object | No | Search filter object. |
searchFilter.name | string | No | Name of the search filter. |
searchFilter.value | string | No | The audit that is needed. |
direction | string | No | Direction of the transaction. |
Sample Request
{
"pageNumber": 1,
"pageSize": 5,
"endToEndID": "",
"count": true,
"method": "",
"searchFilter": [
{
"name": "CHANNEL",
"value": "UI"
}
]
}
Sample Response
{
"audits": [
{
"id": "66b60a0c925b45c896a25069",
"createdDate": "2024-08-09T12:22:36.869Z",
"endToendId": "815097",
"bankId": "1",
"programId": "3",
"span": {
"method": "VisaDirectService.VisaDirectTransaction",
"startTime": "2024-08-09T12:22:36.869Z",
"requestPayload": "{\"programId\":\"3\",\"senderAccountNumber\":\"************0006\",\"recipientAccountNumber\":\"************0127\",\"referenceId\":\"422212815097\",\"senderName\":\"Blaise hook\",\"transactionType\":\"AFT\",\"amount\":2.55}",
"endTime": "2024-08-09T12:22:36.869Z",
"responsePayload": "{\"result\":{\"TransactionID\":\"1090075\",\"processID\":\"1723206156754\",\"referenceID\":\"422212815097\",\"status\":\"PENDING\",\"timeStamp\":\"2024-08-09T12:22:36+0000\",\"transactionAmount\":254,\"transactionNumber\":\"IQA00000000089009\"}}",
"emailID": "khaja.s+pgm1@netxd.com",
"searchFilter": [
"CHANNEL:API",
"BANKID:1",
"TENANTID:3"
],
"direction": "OUT",
"url": "https://internalqa.netxd.com/PLMASTER/callback/visadirect"
}
}
],
"count": "395"
}