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.
Emit new event when a course is completed. See the docs here
Emit new event when a funnel is created. See the docs here
The HotspotSystem API enables automation of hotspot management tasks, such as creating and managing user accounts, adjusting access packages, and retrieving usage statistics. Leveraging Pipedream's capabilities, you can build powerful workflows to interact with this API, automating tasks that otherwise would take considerable manual effort. Use Pipedream to integrate HotspotSystem with a myriad of services for notifications, data analysis, customer management, and more, all in real-time.
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}`,
},
})
},
})
The Zenler API lets you tap into your online course platform to automate tasks, streamline student engagement, and track course performance. By harnessing the power of the Zenler API on Pipedream, you can create dynamic serverless workflows that respond to course interactions, manage users, and analyze educational content effectiveness, all in real-time. Whether you're looking to enhance the learning experience, or make your course administration more efficient, the Zenler API on Pipedream offers the tools to make it happen.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenler: {
type: "app",
app: "zenler",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newzenler.com/api/v1/users`,
headers: {
"X-API-Key": `${this.zenler.$auth.api_key}`,
"X-Account-Name": `${this.zenler.$auth.account_name}`,
},
})
},
})