Termination Letter

Template Overview

  • Template ID: termination-letter
  • 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
effectiveDatestringNoDate (Format: YYYY-MM-DD.)
addressstringNoAddress (Number and street name)
townstringNoAddress (Town)
citystringNoAddress (State/City)
countrystringNoCountry Must be a valid value from the Supported Countries list.
firstNamestringNoFirst Name
lastNamestringNoLast Name
noticestringNoWhat is the termination notice period under the agreement? Ex: 1 month
terminationDatestringNoInput Termination Date 16th July 2023 (Format: YYYY-MM-DD.)
signatorystringNoSignatory for the company This is where you enter in the person that will sign the document on behalf of the company

Example JSON Payload

Here is an example of a properly formatted data object for the Termination Letter template.

{
  "templateId": "termination-letter",
  "data": {
    "effectiveDate": "2026-06-01",
    "address": "123 Beta Way, Lagos",
    "town": "Sample Town",
    "city": "Sample City",
    "country": "Nigeria",
    "firstName": "Joshua",
    "lastName": "Odelola",
    "notice": "1 month",
    "terminationDate": "2026-06-01",
    "signatory": "Joshua Odelola"
  },
  "format": "pdf"
}