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
Add or update a single record in your Pipedream Data Store.
Locates a row record based on a given barcode. If no barcode is provided, return all rows. See the documentation
Add or update multiple records to your Pipedream Data Store.
Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.
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}`,
},
})
},
})
Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})