# Bank Statements No Balance Response
This example shows the response body json payload for a no balance bank statement
.
{
"requestId": "00000000-0000-4000-a000-000000000001",
"code": "pdf/success/bank-statement-no-balance",
"type": 2,
"data": {
"type": "BankStatementNoBalance",
"parser": "NEDBANK_ACCBAL_WEB",
"statement": {
"bank": "NED",
"accountNumber": "9017446437",
"dates": {
"issuedOn": "2018-09-02T00:00:00",
"from": "2018-08-01T00:00:00",
"to": "2018-08-31T00:00:00"
},
"nameAddress": [
"Mr. J Smith",
"10 Main Road",
"Cape Town",
"8001"
]
},
"transactions": [
{
"id": 1,
"date": "2017-09-12T00:00:00.000Z",
"description": ["Deposit"],
"amount": 1600.01
},
{
"id": 2,
"date": "2017-09-12T00:00:00.000Z",
"description": ["#Monthly Account Fee"],
"amount": -100
},
{
"id": 3,
"date": "2017-09-12T00:00:00.000Z",
"description": ["Woolworths"],
"amount": -500
}
],
"valid": true
}
}
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
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