๐Ÿ๏ธReturn BankStatements for BankAccount

Return all the PDF bank statements stored on a Bank Account Record.

Return BankStatements for a BankAccount

GET {{baseUrl}}/business/bank-accounts/:bank_account_id/statements

Return all the PDF bank statements that have been stored on the bank_account_id.

Path Parameters

NameTypeDescription

bank_account_id*

String

The UUID for a Business Bank Account that gets generated and returned in either POST Create without Customer or POST Create with Customer response.

```json
{
    "data": [
        {
            "id": "{{businessId}}",
            "bank_account_id": "{{bankAccountId}}",
            "statement_date": "2023-05-11",
            "start_date": "2023-04-12",
            "end_date": "2023-05-11",
            "temp_url": "https://fincheck-onboarding.s3.eu-west-1.amazonaws.com/uat/client_ecc22a4c-ae24-46d2-83df-3c5f90dbc753/bank_accounts/7204300032084/438581d9-1443-4bab-baf3-2ffe35b88639/bank_account/781f967d-9b38-4741-bfd4-5bb44642a046.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQOIKJL7BXFF7LDWP%2F20230608%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20230608T121020Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1053208ddaa1fe6270184adc61ff01241890a39ce406de97ba1bfcf6be19d071",
            "expires_in": "60m",
            "file": {
                "id": 570,
                "name": "781f967d-9b38-4741-bfd4-5bb44642a046.pdf",
                "type": "pdf",
                "url": "http://uat.apply.fincheck.co.za/test/documents/781f967d-9b38-4741-bfd4-5bb44642a046.pdf"
            },
            "transaction_count": 74,
            "month": "Apr 2023",
            "fraud": {
                "fraud_checks": {
                    "statement_balance": false,
                    "create_date": "not applicable",
                    "meta_mod_date": "not applicable",
                    "meta_producer": false,
                    "meta_creator": false,
                    "meta_author": false
                }
            },
            "processed": true
        }
    ]
}
```

Last updated