Zendit · Schema

RedemptionInstructions

Brand redemption terms by delivery type.

eSIMGift CardsMobile Top-UpPaymentsPrepaid

Properties

Name Type Description
deliveryType string
instructions string
termsAndConditions string
View JSON Schema on GitHub

JSON Schema

zendit-api-redemption-instructions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RedemptionInstructions",
  "description": "Brand redemption terms by delivery type.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-redemption-instructions-schema.json",
  "type": "object",
  "properties": {
    "deliveryType": {
      "type": "string",
      "example": "SMS"
    },
    "instructions": {
      "type": "string",
      "example": "Dial *123# from your phone to redeem."
    },
    "termsAndConditions": {
      "type": "string",
      "example": "Valid for 30 days from purchase."
    }
  }
}