โŒDelete BankAccount

You are able to remove a Bank Account Record record from your Gathr database.

Delete BankAccount

DELETE {{baseUrl}}/bank-accounts/:bank_account_id

Path Parameters

Status Code

200 - OK

Bank Account ID Deleted

{
    "deleted": [
        "{{bankAccountId}}"
    ]
}
404 - Not Found

Bank Account ID Not Found

{
    "errors": {
        "code": "entity_not_found",
        "message": "Record not found in module_bank_accounts"
    }
}
422 - Unprocessable Content

Missing / Invalid Parameter

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

Last updated