Skip to main content

Transaction Info

The following documentation explains how to integrate with the Transaction Information API. This API is used to retrieve information about a specific transaction.

API Endpoint

Endpoint URL: GET https://api.trential.dev/verification/api/1.0/transactions/info?orgId={orgId}&txnId={txnId}

Try it out

Request

To retrieve transaction information, send a GET request to the above endpoint with the required query parameters.

Response

If the data is valid, the response will be as follows:

{
"code": 0,
"message": "Success",
"data": {
"_id": "65aa28302006fdff6f668495",
"candidate": {
"id": "65a7a2100404dddbf579fdf8",
"email": "xxxx",
"mobile": "+91-7755058011",
"profileDetails": {
"fatherName": "xxxxx",
"professionList": [
"Other"
],
"educationLevel": "",
"address": {
"line1": "xxx, Sector xx",
"line2": "",
"locality": "xxxxx",
"landmark": "",
"vtc": "xxx",
"district": "Gurgaon",
"state": "xxx",
"pincode": "xxxxxx",
"country": "India"
},
"gender": "Male",
"dob": "xxxx-06-03",
"name": "XXXXXXX"
}
},
"verifierName": "TRENXXX",
"verifierImageUrl": "https://storage.googleapis.com/indisi-organizations-images-prod/6476d039435ee0a5176b0600",
"insufficiency": false,
"verificationList": [
{
"name": "bgv-degree",
"state": "COMPLETED",
"consentMessage": "xx",
"skipAllowed": false,
"markedAsSkip": false,
"marksheetRequired": false,
"category": {
"id": "656d61faced2eb5819b9a628",
"name": "Education"
}
},
{
"name": "bgv-employment",
"state": "COMPLETED",
"consentMessage": "",
"skipAllowed": false,
"markedAsSkip": false,
"category": {
"id": "656d61faced2eb5819b9a628",
"name": "Employment"
}
}
],
"form": {
"id": {
"_id": "65a95fdee4cd59771b331f64"
}
},
"state": "IN_PROGRESS",
"userPaymentRequired": false,
"updatedAt": "2024-05-14T11:46:01.908Z",
}
}