← Linguapop + Workday integrations

Get Worker with Workday API on New Placement Test Result (Instant) from Linguapop API

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

Trigger workflow on
New Placement Test Result (Instant) from the Linguapop API
Next, do this
Get Worker with the Workday 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 Linguapop trigger and Workday 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 Placement Test Result (Instant) trigger
    1. Connect your Linguapop account
  3. Configure the Get Worker action
    1. Connect your Workday account
    2. Select a Worker ID
  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 placement test is completed. Must setup the source's URL as the `callbackUrl` when sending the test invitation. [See the documentation](https://docs.linguapop.eu/api/#sendcreate-an-invitation-to-a-placement-test)
Version:0.0.1
Key:linguapop-new-placement-test-result-instant

Linguapop Overview

The Linguapop API offers functionalities for language learning applications, focusing on vocabulary, grammar, and language exercises. Through integrating this API with Pipedream, you can automate language learning processes, personalize educational content delivery, and streamline language proficiency assessments. Pipedream’s ability to connect with numerous other APIs and services enables the development of customized, efficient workflows that enhance the learning experience.

Trigger Code

import linguapop from "../../linguapop.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "linguapop-new-placement-test-result-instant",
  name: "New Placement Test Result (Instant)",
  description: "Emit new event when a placement test is completed. Must setup the source's URL as the `callbackUrl` when sending the test invitation. [See the documentation](https://docs.linguapop.eu/api/#sendcreate-an-invitation-to-a-placement-test)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    linguapop,
    http: "$.interface.http",
  },
  methods: {
    generateMeta(result) {
      return {
        id: result.invitationId,
        summary: `Test completed by ${result.email}`,
        ts: Date.parse(result.completedOn),
      };
    },
  },
  async run(event) {
    const { body } = event;
    const meta = this.generateMeta(body);
    this.$emit(body, meta);
  },
  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
LinguapoplinguapopappThis component uses the Linguapop app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.

Trigger Authentication

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

About Linguapop

Linguapop gives you the ability to quickly send branded, CEFR-aligned language skill tests to your candidates anywhere, anytime.

Action

Description:Get a worker. [See the documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#common/v1/get-/workers/-ID-)
Version:0.0.3
Key:workday-get-worker

Action Code

import workday from "../../workday.app.mjs";

export default {
  key: "workday-get-worker",
  name: "Get Worker",
  description: "Get a worker. [See the documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#common/v1/get-/workers/-ID-)",
  version: "0.0.3",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: true,
  },
  type: "action",
  props: {
    workday,
    workerId: {
      propDefinition: [
        workday,
        "workerId",
      ],
    },
  },
  async run({ $ }) {
    const response = await this.workday.getWorker({
      $,
      workerId: this.workerId,
    });
    $.export("$summary", `Successfully fetched worker ${response.descriptor}`);
    return response;
  },
};

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
WorkdayworkdayappThis component uses the Workday app.
Worker IDworkerIdstringSelect a value from the drop down menu.

Action 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

More Ways to Connect Workday + Linguapop

List Worker Payslips with Workday API on New Placement Test Result (Instant) from Linguapop API
Linguapop + Workday
 
Try it
Change Business Title with Workday API on New Placement Test Result (Instant) from Linguapop API
Linguapop + Workday
 
Try it
Create Job Change with Workday API on New Placement Test Result (Instant) from Linguapop API
Linguapop + Workday
 
Try it
List Organization Types with Workday API on New Placement Test Result (Instant) from Linguapop API
Linguapop + Workday
 
Try it
List Supervisory Organizations with Workday API on New Placement Test Result (Instant) from Linguapop API
Linguapop + Workday
 
Try it
New Placement Test Result (Instant) from the Linguapop API

Emit new event when a placement test is completed. Must setup the source's URL as the callbackUrl when sending the test invitation. See the documentation

 
Try it
New Worker Created from the Workday API

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

 
Try it
Create Test Invitation with the Linguapop API

Creates a new placement test invitation. 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

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.