Account Opening Resolution

Template Overview

  • Template ID: account-opening-resolution
  • Version: 2.0.0

To generate this document, pass the structured data described below into the data property of the /api/v1/documents/generate endpoint.


Data Payload Schema

FieldTypeRequirementDescription & Details
countrystringNoRegistration Country The country where the company is registered. Options: "Nigeria", "South Africa"
dateOfResolutionstringNoDate of the resolution (Format: YYYY-MM-DD.)
bankAccountstringNoWhich bank is the account being opened in? LU Bank PLC
signatoriesarray of stringsYesSignatories to the bank account List the individuals who will be authorized signatories on the bank account.
companyDirectorsarray of stringsYesList Directors who will sign this resolution In a Nigerian company, all the directors of the company are required to sign the resolution, otherwise, a majority is required.

Example JSON Payload

Here is an example of a properly formatted data object for the Account Opening Resolution template.

{
  "templateId": "account-opening-resolution",
  "data": {
    "country": "Nigeria",
    "dateOfResolution": "2026-06-01",
    "bankAccount": "Sample Bank Account",
    "signatories": [
      "Sample Signatories"
    ],
    "companyDirectors": [
      "Sample Company Directors"
    ]
  },
  "format": "pdf"
}