Build a barcode system without code.
Get a unique address where you can send emails to trigger your workflow.
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
Locates a row record based on a given barcode. If no barcode is provided, return all rows. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
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}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});