The Range API provides a platform for managing print shop operations, including job status tracking, quoting, invoicing, and scheduling. Leveraging Pipedream, users can automate workflows between Range and other apps, creating a seamless integration that boosts productivity. Whether it's syncing order details with a CRM, triggering notifications based on job status updates, or automating invoice creation, Pipedream acts as a conduit for connecting Range's print shop management capabilities with a myriad of other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
range: {
type: "app",
app: "range",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.range.co/v1/users/auth-user`,
headers: {
Authorization: `Bearer ${this.range.$auth.oauth_access_token}`,
"X-Range-App-ID": `AA0BFrfWOpGg8rTpgQAB`,
"X-Range-Client": `pipedream/1`,
},
})
},
})
Automated Job Status Updates to Slack: Use Pipedream to monitor changes in job statuses on Range and automatically send custom notifications to a Slack channel. This keeps teams informed in real-time about production flow without manual checks.
Dynamic Invoice Generation with QuickBooks: Configure a workflow where Pipedream listens for new completed jobs in Range and generates invoices in QuickBooks. This seamless connection ensures that accounting is updated without the need for manual data entry.
CRM Synchronization with HubSpot: Establish a Pipedream workflow that syncs new customer data from Range to HubSpot. Whenever a new order is placed, the customer's details are updated in the CRM, ensuring the sales team has the latest information for follow-ups and relationship management.
Emit new event when a new check-in by teammate is created. See the docs.
Range uses OAuth authentication. When you connect your Range account, Pipedream will open a popup window where you can sign into Range and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Range API.
Pipedream requests the following authorization scopes when you connect your account:
default
GET
https://api.range.co/v1/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://api.range.co/v1/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://api.range.co/v1/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}