Search all payments from a transactionId
Overview
This route will return a payment with the provided transaction id and query criteria.
Resource Access
GET https://<hostname>/payment/v1/transaction/{id}
Parameters
The requested criteria can be a combination of one or more of the following fields:
Keys | Values |
---|---|
filter | %7B%7D |
search | <Item user wants to search> |
size | 10 |
sort | created%3Adesc |
Example Request
GET https://<hostname>/payment/v1/transaction/0c842847-9d6c-47de-bfe3-59904bd46766
Example Response
{
"totalRecords": 1,
"totalType": "exact",
"recordCount": 1,
"records": [
{
"id": "a4840938-8e4a-5a26-9297-e1c184d3c73a",
"acl": [
"network:45cf4f64-e4f2-5a7e-9344-fbd400d77133",
"institution:0df2d073-64d5-58e2-96ee-4770201facb7",
"buyer:82787b9f-6a7a-5105-9786-33b6ec632812",
"pps:cpx-acquiring",
"pif:74cc59ad-0806-56aa-bd9b-c220b8603933",
"supplier:2109e8a2-6b8d-593c-a0e1-021f43852b8e"
],
"tags": [
"SIP"
],
"buyer": {
"id": "82787b9f-6a7a-5105-9786-33b6ec632812",
"name": "Abhishek buyer braves"
},
"ready": "2024-03-21T11:44:05.221Z",
"amount": 1,
"fileId": "74cc59ad-0806-56aa-bd9b-c220b8603933",
"created": "2024-03-21T11:43:46.385Z",
"creator": {
"id": "404b861c-74df-5e29-b70c-5e9c13c09984",
"username": "abhishek.gupta"
},
"network": {
"id": "45cf4f64-e4f2-5a7e-9344-fbd400d77133",
"name": "Aditya Network 1"
},
"pending": "2024-03-21T11:43:46.329Z",
"vcnLink": {
"hash": "9lG+yy4mQMT13FV9udH7rhvtr334eNito3ch4EEzgak=",
"mask": "Y2M9"
},
"fileDate": "2024-03-21T11:43:44.754Z",
"filePath": "8699952968.8699952968.pif.singlepayment_20240321074346.csv",
"modified": "2024-03-21T11:45:15.038Z",
"modifier": {
"id": "e24bda88-d9ed-5730-a311-05488b7d65ed",
"username": "aryan.sharma+critical"
},
"supplier": {
"id": "2109e8a2-6b8d-593c-a0e1-021f43852b8e",
"name": "Abhishek supplier 1"
},
"emailSent": "2024-03-21T11:44:47.067Z",
"vcnStatus": "Success",
"achDebitId": "72daad15-972c-589a-b8fc-1ac36d6b71cd",
"emailNotes": "",
"importDate": "2024-03-21T11:43:46.328Z",
"isProxyPay": false,
"settlement": {
"unsettledAmount": 1
},
"statusDate": "2024-03-21T11:45:15.001Z",
"templateId": "6035",
"accountType": "VCN",
"createdFrom": "Single Payment",
"hasInvoices": false,
"institution": {
"id": "0df2d073-64d5-58e2-96ee-4770201facb7",
"name": "Abhishek Institution Single and lodge"
},
"isSingleUse": false,
"cardEntityId": "ce429e3bbdad91e30a18705ab3ec0b611b774c2ed03650f9fa",
"deliveryMode": "STANDARD",
"invoiceCount": 0,
"securityCode": {
"hash": "75FS9/rT+o+JqxHTkKFJ6CdRG5tv8TdqdYdswRA98Z0=",
"mask": ""
},
"vcnReference": "906126446549",
"paymentMethod": "Card",
"paymentStatus": "Cancelled",
"transactionId": "0c842847-9d6c-47de-bfe3-59904bd46766",
"expirationDate": "2024-04-20T16:00:00.000Z",
"originalAmount": 1,
"vcnTokenNumber": "906126446549",
"hasPendingDebit": false,
"transactionDate": "2024-03-21T11:43:46.328Z",
"expirationString": "0424",
"totalDebitAmount": 1,
"vcnEmailSentDate": "2024-03-21T11:44:47.067Z",
"externalAccountId": "8699952968-8699952968",
"virtualCardNumber": {
"hash": "va2R4woYcFqz7AthG3dMLtA2UPn62j2Q62HdS+ze7R8=",
"mask": "6168"
},
"achTransactionType": null,
"invoiceUploadCount": 0,
"paymentAuthMessage": "",
"paymentProcessDate": "2024-03-21T11:44:05.098Z",
"buyerBillingProduct": "Card",
"paymentAccountNumber": "6168",
"paymentStatusHistory": [
"20240321074447 Email Sent"
],
"vcnAccountExpirationDate": "2024-04-20T16:00:00.000Z",
"vcnEmailReminderSendDate": "2024-03-26T16:00:00.000Z",
"vcnEmailReminderLastSentDate": "2024-03-21T11:44:47.067Z",
"vcnBalance": 0,
"terminatedAmount": 1,
"cancelled": "2024-03-21T11:45:15.001Z"
}
]
}
Updated 3 days ago