Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a candidate profile is created.
Emit new event when a member is added to a recruiting client (recruiter plan only).
Creates a new client within Dropboard. Note this is available only for recruiter plan users and may incur additional charges based on your organization's plan. See the documentation
Looks for a client within Dropboard. If not found, it will create a new one. See the documentation
The Dropboard API enables management and optimization of shipping logistics, providing functionality to monitor shipments, manage inventory, and handle orders efficiently. With this API, Pipedream users can automate various aspects of logistics and supply chain operations, enhancing real-time decision-making and operational efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dropboard: {
type: "app",
app: "dropboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dropboardhq.com/2024-02/me`,
headers: {
Authorization: `Bearer ${this.dropboard.$auth.oauth_access_token}`,
},
})
},
})