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
Creates a new customer with the provided details. See the documentation
Creates a new internet service with specified details. See the documentation
Updates information of an existing customer. See the documentation
The Splynx API provides a gateway to manage and automate Internet Service Provider (ISP) tasks such as billing, networking, and customer management. By tapping into this API via Pipedream, you can create robust integrations and workflows that streamline operations, enhance customer service, and drive data-driven decisions. Pipedream's platform enables the connection of Splynx's features with hundreds of other apps without the need for extensive coding, facilitating task automation and data synchronization in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
splynx: {
type: "app",
app: "splynx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.splynx.$auth.subdomain}.splynx.app/api/2.0/admin/customers/customer`,
headers: {
"Authorization": `Splynx-EA (access_token=${this.splynx.$auth.oauth_access_token})`,
},
})
},
})