CIAO API
  1. Voucher Generation (Resellers)
CIAO API
  • Introduction
  • Authentication
  • Response Structure
  • Versioning
  • Redemption Intent (Partners)
    • Initialize Redemption Intent
      POST
    • Fetch/Verify Redemption Intent
      GET
  • Voucher Generation (Resellers)
    • Create Vouchers
      POST
    • Show Vouchers from Voucher Payment
      GET
  • General
    • Get all Counties
      GET
  1. Voucher Generation (Resellers)

Show Vouchers from Voucher Payment

Developing
GET
/api/v1/voucher-payments/{reference}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Header Params

Responses

🟢201Created
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/voucher-payments/VOUCHER-01K6X4G5YA71DF81ZMF83EB80Q?customer_identifier=6' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Response Response Example
{
    "status": true,
    "message": "Vouchers created successfully",
    "data": {
        "reference": "VOUCHER-01K47KSRP9GYCCNKJCEHRKBPN8",
        "codes": [
            "SJRHYJU53O",
            "P6FSY6IEFX",
            "H64ASEW4HB"
        ]
    }
}
Modified at 2025-10-06 17:12:48
Previous
Create Vouchers
Next
Get all Counties
Built with