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
The ExpoFP API enables developers to integrate floor plan management and interaction within their applications. With this API, you can access detailed information about exhibition spaces, including booth details, exhibitor information, and floor plan layouts. When you combine ExpoFP with Pipedream's serverless integration and compute platform, you can automate event management tasks, synchronize floor plan data with other systems, and enhance visitor engagement by connecting with CRM or marketing automation tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
expofp: {
type: "app",
app: "expofp",
}
},
async run({steps, $}) {
const data = {
"token": `${this.expofp.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://app.expofp.com/api/v1/list-events`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})