An awesomely fast cloud printing service that supports all printers and USB weighing scales as well as a feature packed JSON API.
Emit new event when a new printnode event is created. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Returns a list of all print jobs that have been submitted. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
The PrintNode API on Pipedream allows you to integrate cloud printing capabilities into workflows. It supports automating print jobs, managing printers, and querying printer status. With Pipedream's ability to connect to hundreds of apps, you can trigger print jobs from emails, forms, databases, or custom events. The API's functions can be weaved into broader business processes to streamline document handling.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
printnode: {
type: "app",
app: "printnode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.printnode.com/whoami`,
auth: {
username: `${this.printnode.$auth.api_key}`,
password: ``,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})