---
title: "InstalmentEntry"
url: "https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660/schemas/InstalmentEntry"
---

> Full API specification: https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660.md

# InstalmentEntry

A single entry in a custom instalment plan.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: "2.0"
servers:
  - url: https://trident-api.connecttrident.com
    description: Generated server url
components:
  schemas:
    InstalmentEntry:
      type: object
      description: A single entry in a custom instalment plan.
      required:
        - dueDate
        - sharePercent
      properties:
        dueDate:
          type: string
          format: date
          description: Due date for this instalment.
          example: 2026-08-01
        sharePercent:
          type: number
          format: double
          description: Percentage of total premium due on this date. All entries across
            the instalmentPlan must sum to 100.
          example: 25
```
