added

Expiration Date for Bank Accounts (EUR & GBP)

We have introduced a new field expiration_date to the payload for creating bank accounts (only EUR and GBP). This change is part of our ongoing efforts to enhance the security and functionality of our banking API.

Endpoint:

POST /payments/banks/account

New Field:

expiration_date (string, required): The expiration date of the document provided. This field must be at least one month away from the current date. The date should be in the format YYYY-MM-DD.


Updated Payload Example:

{
    "customer_id": "6a2e2ef4-d120-40de-8556-f66d70d38b2e",
    "currency": "GBP",
    "phone_number": "2348109023376",
    "reference": "6a2e2ef4-d120-40de-8556-f66d70d38b2e",
    "document_type": "passport",
    "document_number": "A334453332",
    "issued_country_code": "NG",
    "issued_by": "Ministry of Interior",
    "issued_date": "2010-09-09",
    "expiration_date": "2024-07-04",
    "country": "NG",
    "zip_code": "73301",
    "street": "Lagos",
    "state": "Lagos",
    "date_of_birth": "2000-09-09"
}