with OptimoRoute and SMSlink nc?
The OptimoRoute API offers a range of functionalities for route optimization and workforce management. By tapping into this API via Pipedream, you can automate complex logistics and delivery operations, scheduling, and real-time order tracking. Leverage the power of serverless workflows to integrate OptimoRoute with other apps, streamlining your dispatch, improving delivery times, and maximizing efficiency. Whether you're planning routes for a fleet of vehicles or scheduling service appointments, the OptimoRoute API provides the data you need to make decisions on-the-fly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
optimoroute: {
type: "app",
app: "optimoroute",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.optimoroute.com/v1/get_events`,
params: {
key: `${this.optimoroute.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smslink_nc: {
type: "app",
app: "smslink_nc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.smslink.nc/api/user/me`,
headers: {
Authorization: `Bearer ${this.smslink_nc.$auth.personal_access_token}`,
"accept": `application/json`,
},
})
},
})