Zendit · JSON Structure

Zendit Api Report Request Structure

Asynchronous report generation request.

Type: object Properties: 3 Required: 2
eSIMGift CardsMobile Top-UpPaymentsPrepaid

ReportRequest is a JSON Structure definition published by Zendit, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dateFrom dateTo type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-structure/zendit-api-report-request-structure.json",
  "name": "ReportRequest",
  "description": "Asynchronous report generation request.",
  "type": "object",
  "properties": {
    "dateFrom": {
      "type": "date",
      "example": "2026-04-01"
    },
    "dateTo": {
      "type": "date",
      "example": "2026-04-30"
    },
    "type": {
      "type": "string",
      "enum": [
        "TRANSACTIONS",
        "BALANCE",
        "COMMISSION"
      ],
      "example": "TRANSACTIONS"
    }
  },
  "required": [
    "dateFrom",
    "dateTo"
  ]
}