Hotspotsystem.com reseller program is designed for ISP and WISP companies, Multi-site, Hotels, Campgrounds, Retail Chains, Wireless Hotspot Installers, Network System Integrators.
Emit new event when a new customer in a location is created. See the docs.
Emit new event when a new subscriber in a location is created. See the docs.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
HotspotSystem offers a powerful and easy to use API that enables you to build a
wide range of applications and integrations on top of our hotspot platform.
Some examples of what you can build using the HotspotSystem API:
The possibilities are endless - With the HotspotSystem API you can build the
perfect solution for your specific needs. Contact us to find out more about how
we can help you get the most out of our hotspot platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hotspotsystem: {
type: "app",
app: "hotspotsystem",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hotspotsystem.com/v2.0/me`,
headers: {
"sn-apikey": `${this.hotspotsystem.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})