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
| Field | Type | Requirement | Description & Details |
|---|---|---|---|
country | string | No | Registration Country The country where the company is registered. Options: "Nigeria", "South Africa" |
dateOfResolution | string | No | Date of the resolution (Format: YYYY-MM-DD.) |
bankAccount | string | No | Which bank is the account being opened in? LU Bank PLC |
signatories | array of strings | Yes | Signatories to the bank account List the individuals who will be authorized signatories on the bank account. |
companyDirectors | array of strings | Yes | List 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"
}
