Northern Ballet Technical

Physical RFID Reader Setup

Configure and test physical RFID readers on your network

API Endpoint

Example cURL Request:

curl -X POST https://www.northern-ballet-technical.com/api/functions/processRFIDScan \
  -H "Content-Type: application/json" \
  -d '{
    "rfid_code": "1234567890",
    "location": "bramley",
    "scan_type": "entry",
    "reader_id": "bramley_reader_1"
  }'

Example Python:

import requests

url = "https://www.northern-ballet-technical.com/api/functions/processRFIDScan"
payload = {
    "rfid_code": "1234567890",
    "location": "bramley",
    "scan_type": "entry",
    "reader_id": "bramley_reader_1"
}

response = requests.post(url, json=payload)
print(response.json())
Test Scanner
Registered Readers
20 readers
Reader Configuration Guide

Step 1: Configure Reader

Configure your physical RFID reader to POST scan data to the API endpoint. Set the reader's location and scan type in its configuration.

Step 2: Set Location Context

Each reader should be hardcoded with its location (e.g., bramley_reader_1 at Bramley) and whether it's monitoring entry or exit.

Step 3: Test & Deploy

Use the test scanner above to verify the reader is sending data correctly. Multiple readers can operate simultaneously.