# Credit Card Statements Breakdown Multi User Response
This example shows the response body json payload for a credit card statement with a breakdown and multiple users
.
{
"requestId": "00000000-0000-4000-a000-000000000001",
"code": "pdf/success/credit-card-breakdown-multi-user",
"type": 2,
"data": {
"type": "CreditCardBreakdownMultiUser",
"parser": "STANDARDBANK_CREDITCARD",
"authenticity": "original",
"all": [
{
"statement": {
"bank": "STD",
"accountNumber": "5221 **** **** 0000",
"dates": {
"issuedOn": "2017-03-11T00:00:00.000Z",
"from": "2017-02-11T00:00:00.000Z",
"to": "2017-03-11T00:00:00.000Z"
},
"nameAddress": [
"Mr J Doe",
"1 Main Road",
"Green Point",
"8005"
],
"accountType": "REGULAR GOLD INC"
},
"breakdown": [
{
"category": "PreviousBalance",
"name": "Balance brought forward",
"total": 6098.74
},
{
"category": "Payments",
"name": "Payments and credits",
"total": -26000.11
},
{
"category": "Debits",
"name": "Purchases and debits + Service fee",
"total": 31914.74
}
],
"transactions": [
{
"category": "PreviousBalance",
"transactionDate": "2017-02-11T00:00:00.000Z",
"description": ["Balance Brought Forward"],
"amount": 6098.74,
"id": 1
},
{
"category": "Payments",
"transactionDate": "2017-02-20T00:00:00.000Z",
"description": ["Fund Transfers"],
"amount": -13000,
"id": 2
},
{
"category": "Payments",
"transactionDate": "2017-02-25T00:00:00.000Z",
"description": ["Fund Transfers"],
"amount": -13000,
"id": 3
},
{
"category": "Payments",
"transactionDate": "2017-03-11T00:00:00.000Z",
"description": ["Credit Interest"],
"amount": -0.11,
"id": 4
},
{
"category": "Debits",
"transactionDate": "2017-02-11T00:00:00.000Z",
"description": ["C* Pnp Express- Ub7042"],
"amount": 121.48,
"id": 5
}
],
"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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86