with ezeep Blue and agentOS?
Check the status of a specific print job. See the documentation
Retrieve a list of all available printers in the network. See the documentation
The ezeep Blue API offers a cloud-based platform for managing and streamlining your printing needs, enabling you to print documents from any device, anywhere. With Pipedream's serverless integration capabilities, you can harness the ezeep Blue API to automate printing workflows, sync your print jobs with other apps, and track printing across your organization. It's all about making printing tasks simpler, more flexible, and easily integrated with your existing software stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ezeep_blue: {
type: "app",
app: "ezeep_blue",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://printapi.ezeep.com/sfapi/GetConfiguration/`,
headers: {
Authorization: `Bearer ${this.ezeep_blue.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agentos: {
type: "app",
app: "agentos",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://live-api.letmc.com/v4/appointments/${this.agentos.$auth.short_name}/company/branches/0/1000`,
params: {
api_key: `${this.agentos.$auth.api_key}`,
},
})
},
})