Resolution - Appointment of Director

Template Overview

  • Template ID: director-appointment-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.)
directorsarray of stringsNoAdd the name of the new Director(s) being appointed
companyShareholdersarray of stringsNoList all the shareholders in the company If Nigeria is selected as the Registration Country, all shareholders must sign the resolution. If South Africa is selected as the Registration Country, a majority of shareholders is required for the resolution to be effective. (s.68 Companies Act 2008)

Example JSON Payload

Here is an example of a properly formatted data object for the Resolution - Appointment of Director template.

{
  "templateId": "director-appointment-resolution",
  "data": {
    "country": "Nigeria",
    "dateOfResolution": "2026-06-01",
    "directors": [
      "Sample Directors"
    ],
    "companyShareholders": [
      "Sample Company Shareholders"
    ]
  },
  "format": "pdf"
}