View as Markdown
Splynx icon

Splynx ACTION

Create Internet Service

Creates a new internet service with specified details. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Splynx account once, then configure and run Create Internet Service from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "splynx-create-internet-service",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    splynx: { authProvisionId: "apn_xxxxxxx" },
    customerId: "Customer ID",
    tariffId: "Tariff ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Internet Service inputs
Property Type Description
customerId Customer ID string
Select a customer to update, or provide a customer ID.
Required Dynamic
tariffId Tariff ID string
Select a tariff, or provide a tariff ID.
Required Dynamic
status Status string
Status of the service
Required
description Description string
Description of the service
Required
quantity Quantity integer
Quantity
Required
startDate Start Date string
Start date. Format: YYYY-MM-DD
Required
endDate End Date string
End date. Format: YYYY-MM-DD
Required
login Login string
Service login. Recommended to use customer login as prefix
Required
takingIpv4 Taking IPv4 integer
Taking IPv4
Required
additionalOptions Additional Options object
Additional parameters to be passed in this request. See the documentation for available parameters
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
splynx-create-internet-service
Version
0.0.2
App
Splynx
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes