Skip to main content

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
ParameterTypeMandatoryDescription
pageNumberintegerYesIt is the page number of the audit page.
pageSizeintegerYesThis is the number of audits displayed per page.
fromDatestringNoFrom date of the audits that should be displayed.
toDatestringNoTo date of the audits that should be displayed.
referenceNumberstringNoReference number of the transactions.
endToEndIDstringNoEndToEnd ID of the transactions.
batchIdstringNoBatch ID of the transaction.
countbooleanNoCount of the transactions.
methodstringNoMethod name.
searchFilterobjectNoSearch filter object.
searchFilter.namestringNoName of the search filter.
searchFilter.valuestringNoThe audit that is needed.
directionstringNoDirection 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"
}