View as Markdown
OpenSRS icon

OpenSRS ACTION

Initiate Domain Transfer

Initiate a domain transfer to OpenSRS. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's OpenSRS account once, then configure and run Initiate Domain Transfer 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: "opensrs-initiate-domain-transfer",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    opensrs: { authProvisionId: "apn_xxxxxxx" },
    domain: "Domain",
    email: "Email",
  },
})

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.

Initiate Domain Transfer inputs
Property Type Description
domain Domain string
The domain name to register, update, or transfer.
Required
email Email string
The email address of the new owner of the domain.
Required
firstName First Name string
The first name of the new owner of the domain.
Required
lastName Last Name string
The last name of the new owner of the domain.
Required
orgName Organization Name string
The organization name of the new owner of the domain.
Required
phone Phone string
The phone number of the new owner of the domain. Required for all except .BE.
Optional
address1 Address 1 string
The first line of the address of the new owner of the domain. Required for all except .BE.
Optional
city City string
The city of the new owner of the domain. Required for all except .BE.
Optional
country Country string
The country of the new owner of the domain. Required for all except .BE.
Optional
state State string
The state of the new owner of the domain. Required for all except .BE.
Optional
postalCode Postal Code string
The postal code of the new owner of the domain. Required for all except .BE.
Optional
domainAuthInfo Domain Authorization Info string
The authorization code required for domain transfer. Required for .BE.
Optional
jsonOutput JSON Output boolean
Whether to output the response in JSON format.
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
opensrs-initiate-domain-transfer
Version
0.0.2
App
OpenSRS
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes