with Billplz and FedEx?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
billplz: {
type: "app",
app: "billplz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.billplz.$auth.mode}.com/api/v4/webhook_rank`,
auth: {
username: `${this.billplz.$auth.api_key}`,
password: ``,
},
})
},
})
The FedEx API provides a direct line to FedEx's shipping, tracking, and rate services, allowing you to automate the logistics within your business processes. Whether you're automating notifications based on shipment statuses, streamlining the creation of shipping labels, or integrating real-time shipping rates into your checkout process, this API offers a wealth of possibilities to enhance efficiency and customer satisfaction.
export default defineComponent({
props: {
fedex: {
type: "app",
app: "fedex",
}
},
async run({steps, $}) {
// See the FedEx API docs here:
// https://developer.fedex.com/api/en-us/guides/best-practices.html
},
})