Like printing, just better. Save hundreds of dollars per user every year, ditch print servers and printer drivers while minimizing risk to networks and printers.
Go to siteThe 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}`,
},
})
},
})
Automated Document Printing: Trigger a print job on ezeep Blue whenever a new document is added to a specific Dropbox folder. This workflow ensures that hard copies are automatically created for new digital content without manual intervention.
Print Job Notifications: Set up a workflow that sends a Slack message to a designated channel whenever a print job is completed. This can keep team members in the loop about printing status, especially useful in collaborative environments where document printing is frequent.
Scheduled Reports Printing: Combine ezeep Blue with Google Sheets to print weekly performance reports. Use Pipedream's cron job feature to schedule the workflow, ensuring that physical copies of important metrics are always available for meetings.
Check the status of a specific print job. See the documentation
Retrieve a list of all available printers in the network. See the documentation
ezeep Blue uses OAuth authentication. When you connect your ezeep Blue account, Pipedream will open a popup window where you can sign into ezeep Blue and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any ezeep Blue API.
Pipedream requests the following authorization scopes when you connect your account:
printing
GET
https://account.ezeep.com/oauth/authorize/
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.comma_separated_scopes}}
POST
https://account.ezeep.com/oauth/access_token/
content-type: application/x-www-form-urlencoded
accept: application/json
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
&
scope={{oauth.comma_separated_scopes}}
POST
https://account.ezeep.com/oauth/access_token/
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}
&
scope={{oauth.comma_separated_scopes}}