Detrack is a real-time vehicle tracking & electronic proof of delivery solution that works anywhere in the world.
Go to siteThe DeTrack API allows developers to access data from the DeTrack system, including GPS tracking data, vehicle and driver information, and much more. Using the DeTrack API, developers can build a wide range of applications and integrations, such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
detrack: {
type: "app",
app: "detrack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.detrack.com/api/v2/dn/jobs`,
headers: {
"X-API-KEY": `${this.detrack.$auth.api_key}`,
},
})
},
})
DeTrack uses API keys for authentication. When you connect your DeTrack account, Pipedream securely stores the keys so you can easily authenticate to DeTrack APIs in both code and no-code steps.
To retrieve your API key,