# Return All Statements of a BankAccount

<mark style="color:green;">**`GET`**</mark> **`{{baseUrl}}/business/bank-accounts/:bank_account_id/statements`**

### Path Parameters

<table><thead><tr><th width="186">Name</th><th width="87">Type</th><th>Description</th></tr></thead><tbody><tr><td>bank_account_id<mark style="color:red;">*</mark></td><td>String</td><td>The UUID for a Business Bank Account that gets generated and returned in either <a href="../single-business-bank-account-crud/create-without-customer"><mark style="color:orange;"><strong>POST</strong></mark><strong> Create without Customer</strong> </a>or <a href="../single-business-bank-account-crud/create-with-customer"><mark style="color:orange;"><strong>POST</strong></mark><strong> Create with Customer</strong></a> response.</td></tr></tbody></table>

### API Responses&#x20;

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "data": [
        {
            "id": "{{statementId}}",
            "bank_account_id": "{{bankAccountId}}",
            "statement_date": "2023-03-28",
            "start_date": "2023-02-28",
            "end_date": "2023-03-28",
            "temp_url": "https://fincheck-onboarding.s3.eu-west-1.amazonaws.com/uat/client_67ec56bb-0901-4dd6-91a3-4d9d4231cd9e/bank_accounts/9208010020089/a0938ebc-decc-4060-873b-953d0ec7630c/bank_account/1.8-FNB_PREMIER_CURRENT_ACCOUNT_13.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQOIKJL7BXFF7LDWP%2F20230502%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20230502T105323Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=54b29dea69b10a6706a75142ea1cb5330517adafaf39c097d2ee043de2f646e9",
            "expires_in": "60m",
            "file": {
                "id": 1041,
                "name": "1.8 FNB_BUSINESS_ACCOUNT_13.pdf",
                "type": "pdf",
                "url": "http://apply.fincheck.co.za/gathr/documents/1.8%20FNB_PREMIER_CURRENT_ACCOUNT_13.pdf"
            },
            "transaction_count": 75,
            "month": "Feb 2023",
            "fraud": {
                "fraud_checks": {
                    "statement_balance": false,
                    "create_date": false,
                    "meta_mod_date": false,
                    "meta_producer": false,
                    "meta_creator": false,
                    "meta_author": false
                }
            },
            "processed": true
        },
        {
            "id": "{{statementId}}",
            "bank_account_id": "{{bankAccountId}}",
            "statement_date": "2023-02-28",
            "start_date": "2023-01-28",
            "end_date": "2023-02-28",
            "temp_url": "https://fincheck-onboarding.s3.eu-west-1.amazonaws.com/uat/client_67ec56bb-0901-4dd6-91a3-4d9d4231cd9e/bank_accounts/9208010020089/a0938ebc-decc-4060-873b-953d0ec7630c/bank_account/1.7-FNB_PREMIER_CURRENT_ACCOUNT_12.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQOIKJL7BXFF7LDWP%2F20230502%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20230502T105323Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=da93bb5c4bb99f771b5d52bbde2a7e7984ead8d06bff2c5a8e361dcce683b31e",
            "expires_in": "60m",
            "file": {
                "id": 1042,
                "name": "1.7 FNB_BUSINESS_ACCOUNT_12.pdf",
                "type": "pdf",
                "url": "http://uat.apply.fincheck.co.za/gathr/documents/1.7%20FNB_PREMIER_CURRENT_ACCOUNT_12.pdf"
            },
            "transaction_count": 105,
            "month": "Jan 2023",
            "fraud": {
                "fraud_checks": {
                    "statement_balance": false,
                    "create_date": false,
                    "meta_mod_date": false,
                    "meta_producer": false,
                    "meta_creator": false,
                    "meta_author": false
                }
            },
            "processed": true
        }
    ]
}
```

{% endtab %}

{% tab title="404: Missing / Invalid Parameter (bank\_account\_ oid)" %}

```json

{
    "errors": {
        "code": "entity_not_found",
        "message": "Record not found in module_bank_accounts"
    }
}

```

{% endtab %}
{% endtabs %}
