# Credit Card Statements Breakdown Response

This example shows the response body json payload for a credit card statement with a breakdown.

{
  "requestId": "00000000-0000-4000-a000-000000000001",
  "code": "pdf/success/credit-card-breakdown",
  "type": 2,
  "data": {
    "type": "CreditCardBreakdown",
    "parser": "ABSA_CREDITCARD_EMAIL_0",
    "statement": {
      "bank": "ABS",
      "accountNumber": "4787-0000-0000-0000",
      "dates": {
        "issuedOn": "2018-07-06T00:00:00.000Z",
        "from": "2018-06-07T00:00:00.000Z",
        "to": "2018-07-06T00:00:00.000Z"
      },
      "nameAddress": ["Mr J Doe", "1 Main Road", "Green Point", "8005"],
      "accountType": "VISA Premium"
    },
    "breakdown": [
      {
        "category": "PreviousBalance",
        "name": "Balance from last statement",
        "total": 7804.52
      },
      {
        "category": "Transactions",
        "name": "Transactions",
        "total": 17809.47
      },
      {
        "category": "Payments",
        "name": "Payments/Credits",
        "total": -27804.52
      },
      {
        "category": "Charges",
        "name": "Bank charges",
        "total": 228.07
      },
      {
        "category": "Interest",
        "name": "Interest",
        "total": 95.92
      }
    ],
    "transactions": [
      {
        "category": "PreviousBalance",
        "transactionDate": "2018-06-07T00:00:00.000Z",
        "processDate": "2018-06-07T00:00:00.000Z",
        "description": ["Balance from previous statement"],
        "amount": 7804.52,
        "id": 1
      },
      {
        "category": "Transactions",
        "transactionDate": "2018-06-07T00:00:00.000Z",
        "processDate": "2018-06-11T00:00:00.000Z",
        "description": [
          "CA EUROBANK ATM S1A00B93/029ZAKYNTHOS GR",
          "Currency code   EUR   Foreign amount   200,00"
        ],
        "amount": 3206.45,
        "id": 2
      }
    ]
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Updated: 7/21/2021, 10:50:11 AM