{% extends "layout.html" %} {% block title %}Home - KCAP Demo Server{% endblock %} {% block content %}
A simple Flask API for demonstrating AR content retrieval for barcode scanning applications.
This server simulates the Knox Capture API for AR overlays and includes endpoints for managing product attributes.
GET {% if tenant %}/{{ tenant.id }}{% endif %}/login
Authenticates using Basic Auth with tenant-specific credentials.
GET {% if tenant %}/{{ tenant.id }}{% endif %}/arcontentfields
Returns a list of available attributes (e.g., item ID, price, image URI).
GET {% if tenant %}/{{ tenant.id }}{% endif %}/arinfo?barcode=123456
Returns product details for a given barcode, including image URLs.
GET {% if tenant %}/{{ tenant.id }}{% endif %}/images/123456.png
Serves product images stored in the database.