Zendit · JSON Structure

Zendit Api Refund Structure

Refund status for an eSIM purchase.

Type: object Properties: 5
eSIMGift CardsMobile Top-UpPaymentsPrepaid

Refund is a JSON Structure definition published by Zendit, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

transactionId refundId status amount createdAt

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-refund-structure.json",
  "name": "Refund",
  "description": "Refund status for an eSIM purchase.",
  "type": "object",
  "properties": {
    "transactionId": {
      "type": "string",
      "example": "500123"
    },
    "refundId": {
      "type": "string",
      "example": "refund-abc123"
    },
    "status": {
      "type": "string",
      "enum": [
        "REQUESTED",
        "APPROVED",
        "COMPLETED",
        "REJECTED"
      ],
      "example": "APPROVED"
    },
    "amount": {
      "$ref": "#/components/schemas/Price"
    },
    "createdAt": {
      "type": "datetime",
      "example": "2026-05-01T12:00:00Z"
    }
  }
}