Hotspotsystem.com reseller program is designed for ISP and WISP companies, Multi-site, Hotels, Campgrounds, Retail Chains, Wireless Hotspot Installers, Network System Integrators.
Go to siteThe 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}`,
},
})
},
})
Automated User Onboarding: Create a workflow that triggers when a new user signs up via your app. Use the HotspotSystem API to automatically create a hotspot account and assign a predefined access package for the user. Then, integrate with an email service like SendGrid on Pipedream to send personalized welcome emails containing their new hotspot login details.
Usage Monitoring and Alerts: Set up a Pipedream workflow that periodically checks user data consumption through the HotspotSystem API. If a user hits a data limit, trigger an alert using Twilio to send an SMS to the user, and optionally update their package or suspend service until the next billing cycle.
Customer Support Ticket Integration: Implement a system where if a user reports an issue via a support ticket on a platform like Zendesk, Pipedream can trigger a workflow that queries HotspotSystem for the user's connection logs and status. This information can be appended to the support ticket, giving customer service reps immediate context to troubleshoot issues faster.
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.
HotspotSystem uses API keys for authentication. When you connect your HotspotSystem account, Pipedream securely stores the keys so you can easily authenticate to HotspotSystem APIs in both code and no-code steps.
Your API key can be generated from the Control Center > Tools & Settings > API Keys menu.