← Workday + Google Appsheet integrations

Get Rows with Google Appsheet API on New Worker Created from Workday API

Pipedream makes it easy to connect APIs for Google Appsheet, Workday and 3,000+ other apps remarkably fast.

Trigger workflow on
New Worker Created from the Workday API
Next, do this
Get Rows with the Google Appsheet 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 Workday trigger and Google Appsheet 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 Worker Created trigger
    1. Connect your Workday account
    2. Configure timer
  3. Configure the Get Rows action
    1. Connect your Google Appsheet account
    2. Configure Table Name
    3. Optional- Configure Row
    4. Optional- Configure Selector
  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 for each new worker created in Workday. [See the documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#common/v1/get-/workers)
Version:0.0.2
Key:workday-new-worker-created

Trigger Code

import common from "../common/base-polling.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "workday-new-worker-created",
  name: "New Worker Created",
  description: "Emit new event for each new worker created in Workday. [See the documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#common/v1/get-/workers)",
  version: "0.0.2",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    _getPreviousIds() {
      return this.db.get("previousIds") || {};
    },
    _setPreviousIds(ids) {
      this.db.set("previousIds", ids);
    },
    generateMeta(worker) {
      return {
        id: worker.id,
        summary: `New worker created: ${worker.descriptor}`,
        ts: Date.now(),
      };
    },
    async processEvent(limit) {
      const results = this.workday.paginate({
        fn: this.workday.listWorkers,
      });

      const previousIds = this._getPreviousIds();
      let workers = [];

      for await (const worker of results) {
        if (previousIds[worker.id]) {
          continue;
        }
        workers.push(worker);
        previousIds[worker.id] = true;
      }

      this._setPreviousIds(previousIds);

      if (!workers?.length) {
        return;
      }

      if (limit) {
        workers = workers.slice(0, limit);
      }

      for (const worker of workers) {
        const meta = this.generateMeta(worker);
        this.$emit(worker, meta);
      }
    },
  },
  hooks: {
    async deploy() {
      await this.processEvent(25);
    },
  },
  async run() {
    await this.processEvent();
  },
  sampleEmit,
};

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
WorkdayworkdayappThis component uses the Workday app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

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

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

About Workday

The AI platform for people, money, and agents

Action

Description:Read existing records in a table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10104797?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA#)
Version:0.0.2
Key:google_appsheet-get-rows

Google Appsheet Overview

The Google Appsheet API enables programmatic interactions with your custom AppSheet applications, allowing you to streamline processes, automate actions, and interlink your apps with other services. Leveraging Pipedream's powerful serverless platform, you can create workflows that react to events in real-time, automate tasks, and connect to countless other services with minimal effort. Whether you're updating datasets, syncing with external systems, or triggering complex chains of actions, combining AppSheet with Pipedream can supercharge your productivity and enhance your app's capabilities.

Action Code

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

export default {
  ...common,
  key: "google_appsheet-get-rows",
  name: "Get Rows",
  description: "Read existing records in a table in the AppSheet app. [See the documentation](https://support.google.com/appsheet/answer/10104797?hl=en&ref_topic=10105767&sjid=1665780.0.1444403316-SA#)",
  version: "0.0.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: true,
  },
  type: "action",
  props: {
    ...common.props,
    selector: {
      type: "string",
      label: "Selector",
      description: "You can specify an expression to select and format the rows returned. **Example: Filter(TableName, [Column] = \"Value\")** [See the documentation](https://support.google.com/appsheet/answer/10105770?hl=en&ref_topic=10105767&sjid=3242006823758562345-NC)",
      optional: true,
    },
    row: {
      propDefinition: [
        common.props.appsheet,
        "row",
      ],
      description: "You can also filter the results using the `Row` value. The `Row` value may contain field values of the key field values of the record to be retrieved. **Example:** `{ \"First Name\": \"John\" }`",
      optional: true,
    },
  },
  methods: {
    ...common.methods,
    getAction() {
      return "Find";
    },
    getData() {
      return this.selector
        ? {
          Properties: {
            Selector: this.selector,
          },
        }
        : {};
    },
    getSummary(response) {
      return `Successfully retrieved ${ response.length || 0} rows`;
    },
  },
};

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
Google AppsheetappsheetappThis component uses the Google Appsheet app.
Table NametableNamestring

Name of the table. Select Data > Tables and expand the table details to view the table name.

Rowrowobject

You can also filter the results using the Row value. The Row value may contain field values of the key field values of the record to be retrieved. Example: { "First Name": "John" }

Selectorselectorstring

You can specify an expression to select and format the rows returned. Example: Filter(TableName, [Column] = "Value") See the documentation

Action Authentication

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

To enable the API:

  1. Open the app in the app editor.
  2. Select Settings > Integrations.
  3. Under IN: from cloud services to your app, enable the Enable toggle. This enables the API for the application as a whole.
  4. Ensure that at least one unexpired Application Access Key is present. Otherwise, click Create Application Access Key.
  5. When you are done, save the app by selecting one of the following:
  • Save - Save the app.
  • Save & verify data - Save the app and verify that it is runnable based on external dependencies.

About Google Appsheet

With Google AppSheet, you can build powerful solutions that simplify work. No coding required.

More Ways to Connect Google Appsheet + Workday

Add Row with Google Appsheet API on New Worker Created from Workday API
Workday + Google Appsheet
 
Try it
Delete Row with Google Appsheet API on New Worker Created from Workday API
Workday + Google Appsheet
 
Try it
Update Row with Google Appsheet API on New Worker Created from Workday API
Workday + Google Appsheet
 
Try it
New Worker Created from the Workday API

Emit new event for each new worker created in Workday. See the documentation

 
Try it
Change Business Title with the Workday API

Change the business title of a worker. See the documentation

 
Try it
Create Job Change with the Workday API

Create a job change for a worker. See the documentation

 
Try it
Get Worker with the Workday API

Get a worker. See the documentation

 
Try it
List Organization Types with the Workday API

List organization types. See the documentation

 
Try it
List Supervisory Organizations with the Workday API

List supervisory organizations. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
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.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
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
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.