Resolution - Removal of Director

Template Overview

  • Template ID: director-removal-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"
directorsarray of stringsNoName of Ex- director Insert the full name of each director to be removed. Ex: Jane Doe
dateOfResolutionstringNoDate of the resolution (Format: YYYY-MM-DD.)
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 - Removal of Director template.

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