Suggest Edits

To delete a bank account, this API requires two path parameters:

  • aggregator_type: Specifies the source type of the account’s aggregator.
  • account_uuid: The unique identifier associated with the subscribed bank account.

These parameters ensure the correct account is identified and processed.

This route is secured with processor and vendor token authentication.


Endpoint

DELETE   /3p/api/v2/bank-accounts/{aggregator_type}/{account_uuid}

Path Parameter

FieldsTypeIs RequiredDescription
aggregator_typestringYesPossible values: bank_link manual plaid
account_uuidstringThe bank account uuid

Response Object

{
    "status": true,
    "message": "The bank account has been deleted.",
    "data": [],
    "errors": []
}

Errors & Warnings

{
    "status": false,
    "message": "Invalid value provided for Accept header.",
    "data": null,
    "errors": null,
    "error_code": {
        "type": "client_error",
        "subtype": "missing_accept_header"
    }
}