Websites

Fast, clean, responsive, functional websites

IT Services

Management of devices and services for SMBs

Digital Production

Multimedia design, editing, and production

Software Engineering

Custom software to integrate systems and create efficiency

printLabels.js
App.jsx
const { app } = require('@azure/functions')
app.http('sampleLabelPrint', { methods: ['POST'], authLevel: 'admin' route: 'sampleOps/printLabels handler: async (request, context) => { var orders = await request.json() const labelResponse = await labelPrint(orders) return { body: JSON.stringify(labelResponse) }; }});