← Open Exchange Rates + Recruiterflow integrations

Create Job with Recruiterflow API on New Currency Fluctuation from Open Exchange Rates API

Pipedream makes it easy to connect APIs for Recruiterflow, Open Exchange Rates and 3,000+ other apps remarkably fast.

Trigger workflow on
New Currency Fluctuation from the Open Exchange Rates API
Next, do this
Create Job with the Recruiterflow 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 Open Exchange Rates trigger and Recruiterflow 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 Currency Fluctuation trigger
    1. Connect your Open Exchange Rates account
    2. Configure Polling interval
    3. Select a Currency Id
    4. Configure Change
  3. Configure the Create Job action
    1. Connect your Recruiterflow account
    2. Configure Job Title
    3. Select a Client Company ID
    4. Select a Created By
    5. Select a Employment Type ID
    6. Configure Job Description
    7. Select a Department ID
    8. Select one or more Location IDs
    9. Optional- Configure Salary Range Start
    10. Optional- Configure Salary Range End
    11. Optional- Configure Experience Range Start
    12. Optional- Configure Experience Range End
    13. Optional- Configure Skills
    14. Optional- Select one or more Contact IDs
    15. Optional- Configure Hiring Team
    16. Optional- Configure Custom Fields
  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 significant change in a specified currency rate is detected.
Version:0.0.1
Key:open_exchange_rates-currency-fluctuation

Open Exchange Rates Overview

The Open Exchange Rates API provides real-time and historical exchange rates for currencies worldwide, which enables you to retrieve the latest currency data for any purpose like financial reporting, pricing products in multiple currencies, or converting currency for international transactions. In Pipedream, you can tap into this API to create workflows that automate currency-related tasks, enrich data with current exchange rates, and trigger actions based on currency fluctuations.

Trigger Code

import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import app from "../../open_exchange_rates.app.mjs";

export default {
  key: "open_exchange_rates-currency-fluctuation",
  name: "New Currency Fluctuation",
  version: "0.0.1",
  description: "Emit new event when a new significant change in a specified currency rate is detected.",
  type: "source",
  dedupe: "unique",
  props: {
    app,
    db: "$.service.db",
    timer: {
      label: "Polling interval",
      description: "Pipedream will poll the Open Exchange Rates on this schedule",
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
    symbol: {
      propDefinition: [
        app,
        "currencyId",
      ],
      description: "The currency symbol you want to check.",
    },
    change: {
      type: "string",
      label: "Change",
      description: "The change you consider significant.",
      default: "0.50",
    },
  },
  methods: {
    _setLastChange(lastChange) {
      this.db.set("lastChange", lastChange);
    },
    _getLastChange() {
      return this.db.get("lastChange") || false;
    },
    async startEvent() {
      const {
        app,
        symbol,
        change,
      } = this;

      const response = await app.getLatestCurrency({
        params: {
          symbol: [
            symbol,
          ],
        },
      });

      const lastChange = this._getLastChange();

      if (lastChange && (
        (parseFloat(lastChange) - parseFloat(response.rates[symbol])) > parseFloat(change)
      )) {
        this.$emit(
          response,
          {
            id: response.timestamp,
            summary: `A new significant change of currency "${symbol}" was detected!`,
            ts: response.timestamp,
          },
        );
      }
      this._setLastChange(response.rates[symbol]);
    },
  },
  async run() {
    await this.startEvent();
  },
};

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
Open Exchange RatesappappThis component uses the Open Exchange Rates app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling intervaltimer$.interface.timer

Pipedream will poll the Open Exchange Rates on this schedule

Currency IdsymbolstringSelect a value from the drop down menu.
Changechangestring

The change you consider significant.

Trigger Authentication

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

Getting started

First, open an account on the Open Exchange Rate dashboard

Then confirm your email address with the link sent to your account's email address.

Then, copy and paste the App ID into the field below.

About Open Exchange Rates

Consistent, reliable exchange rate data and currency conversion for your business.

Action

Description:Creates a new job posting in Recruiterflow. [See the documentation](https://recruiterflow.com/swagger.yml)
Version:0.0.1
Key:recruiterflow-create-job

Action Code

import app from "../../recruiterflow.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "recruiterflow-create-job",
  name: "Create Job",
  description: "Creates a new job posting in Recruiterflow. [See the documentation](https://recruiterflow.com/swagger.yml)",
  version: "0.0.1",
  type: "action",
  annotations: {
    readOnlyHint: false,
    destructiveHint: false,
    openWorldHint: true,
  },
  props: {
    app,
    title: {
      type: "string",
      label: "Job Title",
      description: "The title of the job",
    },
    clientCompanyId: {
      propDefinition: [
        app,
        "companyId",
      ],
      label: "Client Company ID",
      description: "The ID of the client company for this job",
    },
    createdBy: {
      propDefinition: [
        app,
        "userId",
      ],
      label: "Created By",
      description: "ID of the user creating the job",
    },
    employmentTypeId: {
      propDefinition: [
        app,
        "employmentTypeId",
      ],
    },
    aboutPosition: {
      type: "string",
      label: "Job Description",
      description: "Detailed description of the job position",
    },
    departmentId: {
      propDefinition: [
        app,
        "departmentId",
      ],
    },
    locations: {
      type: "string[]",
      label: "Location IDs",
      description: "Array of location IDs for the job",
      propDefinition: [
        app,
        "locationId",
      ],
    },
    salaryRangeStart: {
      type: "integer",
      label: "Salary Range Start",
      description: "Minimum salary for the position",
      optional: true,
    },
    salaryRangeEnd: {
      type: "integer",
      label: "Salary Range End",
      description: "Maximum salary for the position",
      optional: true,
    },
    experienceRangeStart: {
      type: "integer",
      label: "Experience Range Start",
      description: "Minimum years of experience required",
      optional: true,
    },
    experienceRangeEnd: {
      type: "integer",
      label: "Experience Range End",
      description: "Maximum years of experience required",
      optional: true,
    },
    skills: {
      type: "string[]",
      label: "Skills",
      description: "Array of required skills (e.g., `[\"python\", \"java\"]`)",
      optional: true,
    },
    contacts: {
      type: "string[]",
      label: "Contact IDs",
      description: "Array of contact IDs associated with this job",
      optional: true,
      propDefinition: [
        app,
        "contactId",
      ],
    },
    hiringTeam: {
      type: "string[]",
      label: "Hiring Team",
      description: "Array of hiring team members. Example: `[{\"id\": role_id, \"values\": [{\"user_id\": user_id}]}]`",
      optional: true,
    },
    customFields: {
      propDefinition: [
        app,
        "customFields",
      ],
    },
  },
  async run({ $ }) {
    const {
      app,
      title,
      clientCompanyId,
      createdBy,
      aboutPosition,
      departmentId,
      employmentTypeId,
      locations,
      salaryRangeStart,
      salaryRangeEnd,
      experienceRangeStart,
      experienceRangeEnd,
      skills,
      contacts,
      hiringTeam,
      customFields,
    } = this;

    const data = {
      title,
      client_company_id: clientCompanyId,
      created_by: createdBy,
      about_position: aboutPosition,
      department_id: departmentId,
      employment_type_id: employmentTypeId,
      locations,
      salary_range_start: salaryRangeStart,
      salary_range_end: salaryRangeEnd,
      experience_range_start: experienceRangeStart,
      experience_range_end: experienceRangeEnd,
      skills,
      contacts,
    };

    // Parse JSON strings for object arrays
    if (hiringTeam) {
      data.hiring_team = utils.parseJson(hiringTeam);
    }
    if (customFields) {
      data.custom_fields = utils.parseJson(customFields);
    }

    const response = await app.createJob({
      $,
      data,
    });

    $.export("$summary", `Successfully created job: ${title}`);
    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
RecruiterflowappappThis component uses the Recruiterflow app.
Job Titletitlestring

The title of the job

Client Company IDclientCompanyIdstringSelect a value from the drop down menu.
Created BycreatedBystringSelect a value from the drop down menu.
Employment Type IDemploymentTypeIdstringSelect a value from the drop down menu.
Job DescriptionaboutPositionstring

Detailed description of the job position

Department IDdepartmentIdstringSelect a value from the drop down menu.
Location IDslocationsstring[]Select a value from the drop down menu.
Salary Range StartsalaryRangeStartinteger

Minimum salary for the position

Salary Range EndsalaryRangeEndinteger

Maximum salary for the position

Experience Range StartexperienceRangeStartinteger

Minimum years of experience required

Experience Range EndexperienceRangeEndinteger

Maximum years of experience required

Skillsskillsstring[]

Array of required skills (e.g., ["python", "java"])

Contact IDscontactsstring[]Select a value from the drop down menu.
Hiring TeamhiringTeamstring[]

Array of hiring team members. Example: [{"id": role_id, "values": [{"user_id": user_id}]}]

Custom FieldscustomFieldsstring[]

Array of custom field objects.
Example:

[
  {
    "id": 16,
    "value": {"currency": "USD", "number": 600000}
  },
  {
    "id": 17,
    "value": {"currency": "USD", "number1": 600000, "number2": 800000}
  },
  {
    "id": 19,
    "value": {"number1": 600000, "number2": 800000}
  },
  {
    "id": 20,
    "value": ["choice1", "choice2"]
  },
  {
    "id" : 33,
    "value" : "Random"
  }
]

See the API documentation for more details.

Action Authentication

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

About Recruiterflow

The Best ATS & CRM for Recruiting & Staffing Agencies.

More Ways to Connect Recruiterflow + Open Exchange Rates

Create Candidate with Recruiterflow API on New Currency Fluctuation from Open Exchange Rates API
Open Exchange Rates + Recruiterflow
 
Try it
Create Candidate with Recruiterflow API on New Rate Update from Open Exchange Rates API
Open Exchange Rates + Recruiterflow
 
Try it
Add Candidate to Job with Recruiterflow API on New Currency Fluctuation from Open Exchange Rates API
Open Exchange Rates + Recruiterflow
 
Try it
Add Candidate to Job with Recruiterflow API on New Rate Update from Open Exchange Rates API
Open Exchange Rates + Recruiterflow
 
Try it
Create Job with Recruiterflow API on New Rate Update from Open Exchange Rates API
Open Exchange Rates + Recruiterflow
 
Try it
New Currency Fluctuation from the Open Exchange Rates API

Emit new event when a new significant change in a specified currency rate is detected.

 
Try it
New Rate Update from the Open Exchange Rates API

Emit new event when a new rate update is detected.

 
Try it
Convert Currency with the Open Exchange Rates API

Convert any money value from one currency to another. See the documentation

 
Try it
Retrieve Current Rates with the Open Exchange Rates API

Get the latest exchange rates available. See the documentation

 
Try it
Add Candidate to Job with the Recruiterflow API

Associates a candidate with a job posting in Recruiterflow. See the documentation

 
Try it
Create Candidate with the Recruiterflow API

Creates a new candidate in Recruiterflow. See the documentation

 
Try it
Create Job with the Recruiterflow API

Creates a new job posting in Recruiterflow. 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.