Zendit · Schema

TransactionList

Paginated transaction list.

eSIMGift CardsMobile Top-UpPaymentsPrepaid

Properties

Name Type Description
list array
offset integer
limit integer
total integer
View JSON Schema on GitHub

JSON Schema

zendit-api-transaction-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TransactionList",
  "description": "Paginated transaction list.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-transaction-list-schema.json",
  "type": "object",
  "properties": {
    "list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      },
      "example": [
        {}
      ]
    },
    "offset": {
      "type": "integer",
      "example": 100
    },
    "limit": {
      "type": "integer",
      "example": 100
    },
    "total": {
      "type": "integer",
      "example": 100
    }
  }
}