Build a barcode system without code.
Emit new event when a new row is created in an Orca Scan sheet. See the documentation
Emit new event when a new sheet is created in Orca Scan. See the documentation
Adds a new row or updates an existing row in a sheet. See the documentation
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Locates a row record based on a given barcode. If no barcode is provided, return all rows. See the documentation
The Orca Scan API is a gateway to integrate barcode scanning and inventory management capabilities into various workflows. By leveraging the API, you can automate data collection, streamline inventory tracking, and sync your barcode scanning data with other systems. When used on Pipedream, you can merge Orca Scan functionalities with countless other apps, creating custom automation rules, processing data, and managing inventory in real-time. Ideal for inventory management, asset tracking, and data collection automation, the Orca Scan API is a tool that can adapt to a myriad of business needs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
orca_scan: {
type: "app",
app: "orca_scan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.orcascan.com/v1/sheets`,
headers: {
Authorization: `Bearer ${this.orca_scan.$auth.api_key}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS