# Credit Card Statements Breakdown Response
This example shows the response body json payload for a simple credit card statement
.
{
"requestId": "00000000-0000-4000-a000-000000000001",
"code": "pdf/success/credit-card-breakdown",
"type": 2,
"data": {
"type": "CreditCardSimple",
"parser": "DISCOVERY_CREDITCARD_ALL_0",
"statement": {
"bank": "DIS",
"accountNumber": "4043 0000 0000 0000",
"dates": {
"issuedOn": "2016-03-14T00:00:00.000Z",
"from": "2016-02-15T00:00:00.000Z",
"to": "2016-02-24T00:00:00.000Z"
},
"nameAddress": ["Mr J Doe", "1 Main Road", "Green Point", "8005"]
},
"transactions": [
{
"date": "2016-02-15T00:00:00.000Z",
"description": ["Miles Annual Fee", "136223294"],
"amount": 375,
"id": 1
},
{
"date": "2016-02-11T00:00:00.000Z",
"description": ["Multichoice Mobi Paymen", "Randburg"],
"amount": 779,
"id": 2
},
{
"date": "2016-02-21T00:00:00.000Z",
"description": ["Pinelands Kwikspar", "Pinelands", "Za"],
"amount": 238.47,
"id": 3
}
],
"valid": true,
"breaks": []
}
}
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
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