🕵️♂️Capitec QR Code Decryption
Decrypt Capitec QR code to access a summary of transactional data seamlessly.
POST {{environmentUrl}}/{{tenantId}}/api/v1.1/qrcode/capitec
POST {{environmentUrl}}/{{tenantId}}/api/v1.1/qrcode/capitecRequest Body
Key
Value
Description
file
File
Attach a Capitec bank statement. Contents can contain the full bank statement or the first page of the bank statement.
Accepted file type PDF, Jpeg, PNG.
qrcode_str
Text
Capitec QR code string
Request Response
{
"success": true,
"data": {
"uniqueDocumentId": "{{uuid}}",
"accountHolder": "MR MICHAEL ALFRED BOWREN",
"fromDate": "01/01/2024",
"toDate": "08/04/2024",
"printDate": "08/04/2024",
"accountNumber": "2011627180",
"openingBalance": 408.24,
"largestCredits": [
{
"date": "03/04/2024",
"amount": 5000
},
{
"date": "25/01/2024",
"amount": 3000
},
{
"date": "24/02/2024",
"amount": 3000
}
],
"largestCredit": 5000,
"largestDebits": [
{
"date": "10/01/2024",
"amount": -260
},
{
"date": "18/01/2024",
"amount": -190
},
{
"date": "03/04/2024",
"amount": -142
}
],
"largestDebit": -260,
"closingBalance": 4915.75,
"availableBalance": 4885.75,
"transactionCount": 17,
"creditCount": 8,
"creditTotal": 14031.51,
"debitCount": 9,
"debitTotal": 784
}
}Last updated