๐Ÿ’ณGet All Accounts

Retrieve all the Account records on your unique Gathr database.

Get All Accounts

GET {{baseUrl}}/account-verifications

Get all of the Account records that have been created on your tenant.

Path Parameters

NameTypeDescription

tenant_id*

String

This is the tenantId that was assigned to you when your tenant was created. You will have received this information via message from a member of the Finch Technologies team. If you can't find it, please email support@finch-technologies.com.

environment_url*

String

https://uat.apply.fincheck.co.za

This is the environment URL for uat. Once you change over to prod, you would have to use: https://apply.fincheck.co.za.

*Please note that you need to be set up in each environment by a member of the Finch Technologies team, who will share your bearer token with you for the specific environment in a protected link.

```json
{
    "data": [
        {
            "id": "{{accountVerificationId}}",
            "account_holder": "Miss KJH Hancock",
            "bank": "FNB",
            "account_number": "62938037077",
            "account_type": "Current",
            "branch_code": "250655"
        },
        {
           "id": "{{accountVerificationId}}",
            "account_holder": "MR MA Bowren",
            "bank": "nedbank",
            "account_number": "1234926726",
            "account_type": "Current",
            "branch_code": "198765"
        }, 
        {
            "id": "{{accountVerificationId}}",
            "account_holder": "Miss JDoe",
            "bank": "absa",
            "account_number": "4077066566",
            "account_type": "SAV",
            "branch_code": "632005"
    ],
    "meta": {
        "total": 3,
        "count": 3,
        "per_page": 15,
        "current_page": 1,
        "total_pages": 1
    }
}
```

Last updated