We are a 100% carbon neutral shipping service, designed for small businesses. Simple, reliable, and affordable.
Go to siteThe Sendle API is a shipping and logistics interface designed for seamless e-commerce integration. With it, you can automate the booking and tracking of deliveries, manage shipping rates, and handle parcel pickups directly within your e-commerce platform. Leveraging Pipedream's serverless platform allows you to connect Sendle's capabilities with various other services to streamline your shipping operations, improve customer service, and optimize logistics without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendle: {
type: "app",
app: "sendle",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.sendle.$auth.domain}.sendle.com/api/ping`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.sendle.$auth.sendle_id}`,
password: `${this.sendle.$auth.api_key}`,
},
})
},
})
Automated Order Fulfillment Workflow: When a new order is placed in Shopify, trigger a workflow in Pipedream that creates a shipping order with Sendle. After the shipping label is created, update the Shopify order with the tracking details and send a notification to the customer via email or SMS.
Scheduled Shipping Rate Sync: Use Pipedream's scheduled tasks to fetch current shipping rates from Sendle daily and update these rates in a Google Sheet. This can be used for quick reference by customer support teams or for syncing rates with custom pricing tools used in your e-commerce storefront.
Customer Service Integration: Whenever a delivery status in Sendle updates to "Delivered," trigger a Pipedream workflow that logs this event in a CRM like HubSpot. Follow this by automatically sending a follow-up satisfaction survey via Typeform to the customer, ensuring timely feedback on their delivery experience.
Sendle uses API keys for authentication. When you connect your Sendle account, Pipedream securely stores the keys so you can easily authenticate to Sendle APIs in both code and no-code steps.
To retrieve your API keys,
Set your domain to api
for Production Server, sandbox
for Sandbox Server