GetSwift is a technology & services co. helping businesses build, manage & optimize their delivery & business systems
Go to siteThe Getswift API provides programmatic access to the Getswift delivery platform, enabling you to manage and track deliveries, drivers, and orders. Integrating this API with Pipedream allows you to create automated workflows that can optimize delivery operations, sync data with other business tools, and respond to events in real-time. With Pipedream, you can trigger actions based on Getswift events, process delivery data, and connect to countless other services to extend the capabilities of your logistics operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
getswift: {
type: "app",
app: "getswift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.getswift.co/api/public/v2/drivers`,
params: {
ApiKey: `${this.getswift.$auth.api_key}`,
},
})
},
})
Automate Order Dispatch: When a new order is received in your e-commerce platform (like Shopify), a Pipedream workflow can automatically create a delivery task in Getswift. This ensures that the dispatch process begins immediately, without manual intervention.
Sync Delivery Status with a Database: Track delivery updates in real-time by using a Pipedream workflow that listens for status changes from Getswift and updates a corresponding record in a database like PostgreSQL. This keeps your internal systems in sync and allows for real-time reporting and analytics.
Send Delivery Notifications: Enhance customer experience by sending SMS or email notifications via Twilio or SendGrid whenever the status of a delivery changes. A Pipedream workflow can monitor Getswift delivery status updates and trigger these notifications, keeping customers informed every step of the way.
Getswift uses API keys for authentication. When you connect your Getswift account, Pipedream securely stores the keys so you can easily authenticate to Getswift APIs in both code and no-code steps.
You can get your API Key in your merchant's API settings.