CIAO API
    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

    Response Structure

    All responses follow a consistent structure for easier integration and error handling.

    ✅ Success Format#

    {
      "status": true,
      "message": "Success message"
      "data": {
        // response-specific payload
      }
    }
    

    ❌ Error Format#

    {
      "status": false,
      "message": "Descriptive error message",
      "errors": {
        "field_name": ["Validation message"]
      }
    }
    
    Modified at 2025-07-03 22:06:49
    Previous
    Authentication
    Next
    Versioning
    Built with