← GoDaddy + Judge.me integrations

Private Reply with Judge.me API on New Domain Added from GoDaddy API

Pipedream makes it easy to connect APIs for Judge.me, GoDaddy and 2,800+ other apps remarkably fast.

Trigger workflow on
New Domain Added from the GoDaddy API
Next, do this
Private Reply with the Judge.me API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a GoDaddy trigger and Judge.me action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Domain Added trigger
    1. Connect your GoDaddy account
    2. Configure timer
    3. Optional- Select one or more Statuses
    4. Optional- Select one or more Status Groups
    5. Optional- Select one or more Includes
  3. Configure the Private Reply action
    1. Connect your Judge.me account
    2. Select a Review Id
    3. Configure Email Subject
    4. Configure Email Body
    5. Optional- Configure Send Private Email
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new domain is added. [See the documentation](https://developer.godaddy.com/doc/endpoint/domains#/v1/list)
Version:0.0.1
Key:godaddy-new-domain-added

GoDaddy Overview

The GoDaddy API provides programmatic access to manage aspects of your GoDaddy domain and hosting services. Through Pipedream, you can automate domain availability checks, renewals, and DNS record management. This enables seamless integration of domain-related operations within your automated workflows, such as dynamically updating DNS records or triggering actions based on domain registration events.

Trigger Code

import common from "../common/base.mjs";

export default {
  ...common,
  key: "godaddy-new-domain-added",
  name: "New Domain Added",
  description: "Emit new event when a new domain is added. [See the documentation](https://developer.godaddy.com/doc/endpoint/domains#/v1/list)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    statuses: {
      propDefinition: [
        common.props.godaddy,
        "statuses",
      ],
    },
    statusGroups: {
      propDefinition: [
        common.props.godaddy,
        "statusGroups",
      ],
    },
    includes: {
      propDefinition: [
        common.props.godaddy,
        "includes",
      ],
    },
  },
  methods: {
    ...common.methods,
    generateMeta(domain) {
      return {
        id: domain.domain,
        summary: domain.domain,
        ts: Date.parse(domain.createdAt),
      };
    },
    async processEvents(max) {
      const lastTs = this._getLastTs();
      const domains = [];

      const results = this.godaddy.paginate({
        fn: this.godaddy.listDomains,
        params: {
          statuses: this.statuses,
          statusGroups: this.statusGroups,
          includes: this.includes,
          modifiedDate: lastTs,
        },
        max,
      });

      for await (const domain of results) {
        domains.push(domain);
      }

      if (!domains.length) {
        return;
      }

      this._setLastTs(domains[domains.length - 1].createdAt);

      domains.forEach((domain) => {
        const meta = this.generateMeta(domain);
        this.$emit(domain, meta);
      });
    },
  },
  hooks: {
    async deploy() {
      await this.processEvents(25);
    },
  },
  async run() {
    await this.processEvents();
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
GoDaddygodaddyappThis component uses the GoDaddy app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Statusesstatusesstring[]Select a value from the drop down menu:ACTIVEAWAITING_CLAIM_ACKAWAITING_DOCUMENT_AFTER_TRANSFERAWAITING_DOCUMENT_AFTER_UPDATE_ACCOUNTAWAITING_DOCUMENT_UPLOADAWAITING_FAILED_TRANSFER_WHOIS_PRIVACYAWAITING_PAYMENTAWAITING_RENEWAL_TRANSFER_IN_COMPLETEAWAITING_TRANSFER_IN_ACKAWAITING_TRANSFER_IN_AUTHAWAITING_TRANSFER_IN_AUTOAWAITING_TRANSFER_IN_WHOISAWAITING_TRANSFER_IN_WHOIS_FIXAWAITING_VERIFICATION_ICANNAWAITING_VERIFICATION_ICANN_MANUALCANCELLEDCANCELLED_HELDCANCELLED_REDEEMABLECANCELLED_TRANSFERCONFISCATEDDISABLED_SPECIALEXCLUDED_INVALID_CLAIM_FIREHOSEEXPIRED_REASSIGNEDFAILED_BACKORDER_CAPTUREFAILED_DROP_IMMEDIATE_THEN_ADDFAILED_PRE_REGISTRATIONFAILED_REDEMPTIONFAILED_REDEMPTION_REPORTFAILED_REGISTRATIONFAILED_REGISTRATION_FIREHOSEFAILED_RESTORATION_REDEMPTION_MOCKFAILED_SETUPFAILED_TRANSFER_INFAILED_TRANSFER_IN_BAD_STATUSFAILED_TRANSFER_IN_REGISTRYHELD_COURT_ORDEREDHELD_DISPUTEDHELD_EXPIRATION_PROTECTIONHELD_EXPIRED_REDEMPTION_MOCKHELD_REGISTRAR_ADDHELD_REGISTRAR_REMOVEHELD_SHOPPERHELD_TEMPORARYLOCKED_ABUSELOCKED_COPYRIGHTLOCKED_REGISTRYLOCKED_SUPERPARKED_AND_HELDPARKED_EXPIREDPARKED_VERIFICATION_ICANNPENDING_ABORT_CANCEL_SETUPPENDING_AGREEMENT_PRE_REGISTRATIONPENDING_APPLY_RENEWAL_CREDITSPENDING_BACKORDER_CAPTUREPENDING_BLOCKED_REGISTRYPENDING_CANCEL_REGISTRANT_PROFILEPENDING_COMPLETE_REDEMPTION_WITHOUT_RECEIPTPENDING_COMPLETE_REGISTRANT_PROFILEPENDING_COOPENDING_COO_COMPLETEPENDING_DNSPENDING_DNS_ACTIVEPENDING_DNS_INACTIVEPENDING_DOCUMENT_VALIDATIONPENDING_DOCUMENT_VERIFICATIONPENDING_DROP_IMMEDIATEPENDING_DROP_IMMEDIATE_THEN_ADDPENDING_EPP_CREATEPENDING_EPP_DELETEPENDING_EPP_UPDATEPENDING_ESCALATION_REGISTRYPENDING_EXPIRATIONPENDING_EXPIRATION_RESPONSEPENDING_EXPIRATION_SYNCPENDING_EXPIRED_REASSIGNMENTPENDING_EXPIRE_AUTO_ADDPENDING_EXTEND_REGISTRANT_PROFILEPENDING_FAILED_COOPENDING_FAILED_EPP_CREATEPENDING_FAILED_HELDPENDING_FAILED_PURCHASE_PREMIUMPENDING_FAILED_RECONCILE_FIREHOSEPENDING_FAILED_REDEMPTION_WITHOUT_RECEIPTPENDING_FAILED_RELEASE_PREMIUMPENDING_FAILED_RENEW_EXPIRATION_PROTECTIONPENDING_FAILED_RESERVE_PREMIUMPENDING_FAILED_SUBMIT_FIREHOSEPENDING_FAILED_TRANSFER_ACK_PREMIUMPENDING_FAILED_TRANSFER_IN_ACK_PREMIUMPENDING_FAILED_TRANSFER_IN_PREMIUMPENDING_FAILED_TRANSFER_PREMIUMPENDING_FAILED_TRANSFER_SUBMIT_PREMIUMPENDING_FAILED_UNLOCK_PREMIUMPENDING_FAILED_UPDATE_APIPENDING_FRAUD_VERIFICATIONPENDING_FRAUD_VERIFIEDPENDING_GET_CONTACTSPENDING_GET_HOSTSPENDING_GET_NAME_SERVERSPENDING_GET_STATUSPENDING_HOLD_ESCROWPENDING_HOLD_REDEMPTIONPENDING_LOCK_CLIENT_REMOVEPENDING_LOCK_DATA_QUALITYPENDING_LOCK_THEN_HOLD_REDEMPTIONPENDING_PARKING_DETERMINATIONPENDING_PARK_INVALID_WHOISPENDING_PARK_INVALID_WHOIS_REMOVALPENDING_PURCHASE_PREMIUMPENDING_RECONCILEPENDING_RECONCILE_FIREHOSEPENDING_REDEMPTIONPENDING_REDEMPTION_REPORTPENDING_REDEMPTION_REPORT_COMPLETEPENDING_REDEMPTION_REPORT_SUBMITTEDPENDING_REDEMPTION_WITHOUT_RECEIPTPENDING_REDEMPTION_WITHOUT_RECEIPT_MOCKPENDING_RELEASE_PREMIUMPENDING_REMOVALPENDING_REMOVAL_HELDPENDING_REMOVAL_PARKEDPENDING_REMOVAL_UNPARKPENDING_RENEWALPENDING_RENEW_EXPIRATION_PROTECTIONPENDING_RENEW_INFINITEPENDING_RENEW_LOCKEDPENDING_RENEW_WITHOUT_RECEIPTPENDING_REPORT_REDEMPTION_WITHOUT_RECEIPTPENDING_RESERVE_PREMIUMPENDING_RESET_VERIFICATION_ICANNPENDING_RESPONSE_FIREHOSEPENDING_RESTORATIONPENDING_RESTORATION_INACTIVEPENDING_RESTORATION_REDEMPTION_MOCKPENDING_RETRY_EPP_CREATEPENDING_RETRY_HELDPENDING_SEND_AUTH_CODEPENDING_SETUPPENDING_SETUP_ABANDONPENDING_SETUP_AGREEMENT_LANDRUSHPENDING_SETUP_AGREEMENT_SUNRISE2_APENDING_SETUP_AGREEMENT_SUNRISE2_BPENDING_SETUP_AGREEMENT_SUNRISE2_CPENDING_SETUP_AUTHPENDING_SETUP_DNSPENDING_SETUP_FAILEDPENDING_SETUP_REVIEWPENDING_SETUP_SUNRISEPENDING_SETUP_SUNRISE_PREPENDING_SETUP_SUNRISE_RESPONSEPENDING_SUBMIT_FAILUREPENDING_SUBMIT_FIREHOSEPENDING_SUBMIT_HOLD_FIREHOSEPENDING_SUBMIT_HOLD_LANDRUSHPENDING_SUBMIT_HOLD_SUNRISEPENDING_SUBMIT_LANDRUSHPENDING_SUBMIT_RESPONSE_FIREHOSEPENDING_SUBMIT_RESPONSE_LANDRUSHPENDING_SUBMIT_RESPONSE_SUNRISEPENDING_SUBMIT_SUCCESS_FIREHOSEPENDING_SUBMIT_SUCCESS_LANDRUSHPENDING_SUBMIT_SUCCESS_SUNRISEPENDING_SUBMIT_SUNRISEPENDING_SUBMIT_WAITING_LANDRUSHPENDING_SUCCESS_PRE_REGISTRATIONPENDING_SUSPENDED_DATA_QUALITYPENDING_TRANSFER_ACK_PREMIUMPENDING_TRANSFER_INPENDING_TRANSFER_IN_ACKPENDING_TRANSFER_IN_ACK_PREMIUMPENDING_TRANSFER_IN_BAD_REGISTRANTPENDING_TRANSFER_IN_CANCELPENDING_TRANSFER_IN_CANCEL_REGISTRYPENDING_TRANSFER_IN_COMPLETE_ACKPENDING_TRANSFER_IN_DELETEPENDING_TRANSFER_IN_LOCKPENDING_TRANSFER_IN_NACKPENDING_TRANSFER_IN_NOTIFICATIONPENDING_TRANSFER_IN_PREMIUMPENDING_TRANSFER_IN_RELEASEPENDING_TRANSFER_IN_RESPONSEPENDING_TRANSFER_IN_UNDERAGEPENDING_TRANSFER_OUTPENDING_TRANSFER_OUT_ACKPENDING_TRANSFER_OUT_NACKPENDING_TRANSFER_OUT_PREMIUMPENDING_TRANSFER_OUT_UNDERAGEPENDING_TRANSFER_OUT_VALIDATIONPENDING_TRANSFER_PREMIUMPENDING_TRANSFER_SUBMIT_PREMIUMPENDING_UNLOCK_DATA_QUALITYPENDING_UNLOCK_PREMIUMPENDING_UPDATEPENDING_UPDATED_REGISTRANT_DATA_QUALITYPENDING_UPDATE_ACCOUNTPENDING_UPDATE_APIPENDING_UPDATE_API_RESPONSEPENDING_UPDATE_AUTHPENDING_UPDATE_CONTACTSPENDING_UPDATE_CONTACTS_PRIVACYPENDING_UPDATE_DNSPENDING_UPDATE_DNS_SECURITYPENDING_UPDATE_ELIGIBILITYPENDING_UPDATE_EPP_CONTACTSPENDING_UPDATE_MEMBERSHIPPENDING_UPDATE_OWNERSHIPPENDING_UPDATE_OWNERSHIP_AUTH_AUCTIONPENDING_UPDATE_OWNERSHIP_HELDPENDING_UPDATE_REGISTRANTPENDING_UPDATE_REPOPENDING_VALIDATION_DATA_QUALITYPENDING_VERIFICATION_FRAUDPENDING_VERIFICATION_STATUSPENDING_VERIFY_REGISTRANT_DATA_QUALITYRESERVEDRESERVED_PREMIUMREVERTEDSUSPENDED_VERIFICATION_ICANNTRANSFERRED_OUTUNLOCKED_ABUSEUNLOCKED_SUPERUNPARKED_AND_UNHELDUPDATED_OWNERSHIPUPDATED_OWNERSHIP_HELD
Status GroupsstatusGroupsstring[]Select a value from the drop down menu:INACTIVEPRE_REGISTRATIONREDEMPTIONRENEWABLEVERIFICATION_ICANNVISIBLE
Includesincludesstring[]Select a value from the drop down menu:authCodecontactsnameServers

Trigger Authentication

GoDaddy uses API keys for authentication. When you connect your GoDaddy account, Pipedream securely stores the keys so you can easily authenticate to GoDaddy APIs in both code and no-code steps.

To retrieve your API keys,

  • Navigate to your GoDaddy Developer Portal and sign in
  • Go to “API Keys”

About GoDaddy

GoDaddy’s here to help you turn your ideas into reality and succeed online.

Action

Description:Create a private reply for a review, on behalf of the shop. Private replies are not shown on the widgets, but can be emailed to the reviewers. [See the documentation](https://judge.me/api/docs#tag/Private-Replies)
Version:0.0.2
Key:judge_me-private-reply

Judge.me Overview

The Judge.me API lets you tap into a rich repository of product review data, enabling you to automate the gathering, moderation, and publication of reviews on your store. You can also trigger actions based on review events, like thanking a customer after they leave a positive review or addressing negative feedback promptly. With Pipedream's serverless platform, you can craft workflows to interact with other apps, streamline processes, and react to review-related activities in real-time, without writing any backend code.

Action Code

import app from "../../judge_me.app.mjs";
export default {
  name: "Private Reply",
  description: "Create a private reply for a review, on behalf of the shop. Private replies are not shown on the widgets, but can be emailed to the reviewers. [See the documentation](https://judge.me/api/docs#tag/Private-Replies)",
  key: "judge_me-private-reply",
  version: "0.0.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    app,
    reviewId: {
      propDefinition: [
        app,
        "reviewId",
      ],
    },
    replyEmailSubject: {
      label: "Email Subject",
      description: "The reply email subject.",
      type: "string",
    },
    replyEmailBody: {
      label: "Email Body",
      description: "The reply email body.",
      type: "string",
    },
    sendPrivateEmail: {
      label: "Send Private Email",
      description: "To indicate whether to send email to reviewer. Default is `true`.",
      type: "boolean",
      optional: true,
      default: true,
    },
  },
  async run({ $ }) {
    const response = await this.app.privateReply({
      $,
      data: {
        "review_id": this.reviewId,
        "send_private_email": this.sendPrivateEmail,
        "private_reply": {
          "email_subject": this.replyEmailSubject,
          "email_body": this.replyEmailBody,
        },
      },
    });

    $.export("$summary", `Successfully replied in private the review ${this.reviewId}`);
    return {
      status: response.status,
      statusText: response.statusText,
      data: response.data,
    };
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Judge.meappappThis component uses the Judge.me app.
Review IdreviewIdintegerSelect a value from the drop down menu.
Email SubjectreplyEmailSubjectstring

The reply email subject.

Email BodyreplyEmailBodystring

The reply email body.

Send Private EmailsendPrivateEmailboolean

To indicate whether to send email to reviewer. Default is true.

Action Authentication

Judge.me uses OAuth authentication. When you connect your Judge.me account, Pipedream will open a popup window where you can sign into Judge.me and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Judge.me API.

Pipedream requests the following authorization scopes when you connect your account:

read_reviewsread_productswrite_replieswrite_private_replies

About Judge.me

Judge.me is the gold standard of product reviews and store reviews on Shopify.

More Ways to Connect Judge.me + GoDaddy

Reply with Judge.me API on New Domain Added from GoDaddy API
GoDaddy + Judge.me
 
Try it
Check Domain Availability with GoDaddy API on New Review (Instant) from Judge.me API
Judge.me + GoDaddy
 
Try it
Renew Domain with GoDaddy API on New Review (Instant) from Judge.me API
Judge.me + GoDaddy
 
Try it
List Domains with GoDaddy API on New Review (Instant) from Judge.me API
Judge.me + GoDaddy
 
Try it
Suggest Domains with GoDaddy API on New Review (Instant) from Judge.me API
Judge.me + GoDaddy
 
Try it
New Domain Added from the GoDaddy API

Emit new event when a new domain is added. See the documentation

 
Try it
New Review (Instant) from the Judge.me API

Emit new event when a new review is posted. See the documentation

 
Try it
Check Domain Availability with the GoDaddy API

Check the availability of a domain. See the documentation

 
Try it
List Domains with the GoDaddy API

List domains in GoDaddy. See the documentation

 
Try it
Renew Domain with the GoDaddy API

Renew a domain in GoDaddy. See the documentation

 
Try it
Suggest Domains with the GoDaddy API

Suggest domains based on the given criteria. See the documentation

 
Try it
Private Reply with the Judge.me API

Create a private reply for a review, on behalf of the shop. Private replies are not shown on the widgets, but can be emailed to the reviewers. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.