๐Ÿ“„Return a Single Statement

Return a single PDF bank statements stored on a Bank Account Record.

Return a Single Statement

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

Path Parameters

Key TypeDescription

bank_account_id*

String

The UUID for a Bank Account that gets generated and returned in the POST Create new Bank Account response.

statement_id*

String

The UUID for a Bank Account that gets generated and returned in the POST Upload Bankstatement V1.0 , POST Upload Bankstatement V1.1, or Get Return All Statements of a Bank Account response.


{
    "data": [
        {
            "id": "{{statementId}}",
            "bank_account_id": "{{bankAccountId}}",
            "statement_date": "2023-01-09",
            "start_date": "2022-12-09",
            "end_date": "2023-01-09",
            "temp_url": "https://fincheck-onboarding.s3.eu-west-1.amazonaws.com/testing/client_8de80ed8-8495-428d-a6a8-acd30a9ab01a/statements/9001145117080/c5a6beab-727c-4019-a654-cd5ceaf2f543/bank_account/62796664946-0.pdf?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQOIKJL7BXFF7LDWP%2F20230118%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20230118T170012Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=868205de3c818e119b73b10e8ea4248e95e15cdafe8096bd71ef21465809d4c3",
            "expires_in": "60m",
            "file": {
                "id": 2718,
                "name": "62796664946-0.pdf",
                "type": "pdf",
                "url": "https://dev.apply.fincheck.co.za/fincheck/documents/62796664946-0.pdf"
            },
            "transaction_count": 101,
            "month": "Dec 2022",
            "fraud": null
        }
    ]
}

Last updated