← twocaptcha + Taleez integrations

List Jobs with Taleez API on New 2Captcha Balance Updated from twocaptcha API

Pipedream makes it easy to connect APIs for Taleez, twocaptcha and 2,500+ other apps remarkably fast.

Trigger workflow on
New 2Captcha Balance Updated from the twocaptcha API
Next, do this
List Jobs with the Taleez 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 twocaptcha trigger and Taleez 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 2Captcha Balance Updated trigger
    1. Connect your twocaptcha account
    2. Configure timer
  3. Configure the List Jobs action
    1. Connect your Taleez account
    2. Optional- Select a Unit ID
    3. Optional- Select a Status
    4. Optional- Select a Contract
    5. Optional- Configure City
    6. Optional- Configure Company Label
    7. Optional- Configure Tag
    8. Optional- Configure Max Results
  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 the user's balance in 2Captcha API is changed.
Version:0.0.1
Key:_twocaptcha-balance-updated

twocaptcha Overview

The 2Captcha API enables automated solving of captchas and reCaptcha. On Pipedream, you can integrate this API into workflows to handle captcha challenges when scraping websites, automating form submissions, or any process that encounters captchas. The API takes the captcha image or reCaptcha data as input and returns the text or token needed to bypass the captcha, effectively allowing your automations to mimic human interaction.

Trigger Code

import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import _twocaptcha from "../../_twocaptcha.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "_twocaptcha-balance-updated",
  name: "New 2Captcha Balance Updated",
  description: "Emit new event when the user's balance in 2Captcha API is changed.",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    _twocaptcha,
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  methods: {
    _getLastBalance() {
      return this.db.get("lastBalance") || null;
    },
    _setLastBalance(lastBalance) {
      this.db.set("lastBalance", lastBalance);
    },
    generateMeta(currentBalance) {
      const ts = Date.now();
      return {
        id: `${currentBalance}-${ts}`,
        summary: `Balance Updated: ${currentBalance}`,
        ts,
      };
    },
    async startEvent() {
      const lastBalance = this._getLastBalance();

      let response = await this._twocaptcha.getBalance();

      if (!lastBalance || (lastBalance && response.balance != lastBalance)) {
        this.$emit(response, this.generateMeta(response.balance));
        this._setLastBalance(response.balance);
      }
    },
  },
  async run() {
    await this.startEvent();
  },
  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
twocaptcha_twocaptchaappThis component uses the twocaptcha app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

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

Sign in and copy your API Key from Account Settings

About twocaptcha

Captcha Solving Service. 2captcha is a service for solving CAPTCHA. We solve all types of.

Action

Description:Retrieves a list of jobs in your company. [See the documentation](https://api.taleez.com/swagger-ui/index.html#/jobs/list_3)
Version:0.0.1
Key:taleez-list-jobs

Action Code

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

export default {
  key: "taleez-list-jobs",
  name: "List Jobs",
  description: "Retrieves a list of jobs in your company. [See the documentation](https://api.taleez.com/swagger-ui/index.html#/jobs/list_3)",
  version: "0.0.1",
  type: "action",
  props: {
    taleez,
    unitId: {
      propDefinition: [
        taleez,
        "unitId",
      ],
    },
    status: {
      propDefinition: [
        taleez,
        "status",
      ],
    },
    contract: {
      propDefinition: [
        taleez,
        "contract",
      ],
    },
    city: {
      propDefinition: [
        taleez,
        "city",
      ],
    },
    companyLabel: {
      propDefinition: [
        taleez,
        "companyLabel",
      ],
    },
    tag: {
      propDefinition: [
        taleez,
        "tag",
      ],
    },
    maxResults: {
      type: "integer",
      label: "Max Results",
      description: "The maximum number of jobs to retrieve. Default: `100`",
      optional: true,
    },
  },
  async run({ $ }) {
    const { list: jobs } = await this.taleez.listJobs({
      $,
      params: {
        unitId: this.unitId,
        status: this.status,
        contract: this.contract,
        city: this.city,
        companyLabel: this.companyLabel,
        tag: this.tag,
        pageSize: this.maxResults,
        withDetails: true,
        withProps: true,
      },
    });
    $.export("$summary", `Successfully retrieved ${jobs?.length} job${jobs?.length === 1
      ? ""
      : "s"}`);
    return jobs;
  },
};

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
TaleeztaleezappThis component uses the Taleez app.
Unit IDunitIdstringSelect a value from the drop down menu.
StatusstatusstringSelect a value from the drop down menu:DRAFTPUBLISHEDDONESUSPENDED
ContractcontractstringSelect a value from the drop down menu:CDICDDINTERIMFREELANCEINTERNSHIPAPPRENTICESHIPSTUDENTVIEFRANCHISESTATUTEVACATAIRELIBERALCDI_CHANTIERINTERMITTENTSEASONOTHERVOLUNTEERPERMANENTFIXEDTERM
Citycitystring

Filter by job city

Company LabelcompanyLabelstring

Filter by company label

Tagtagstring

Filter by job tag

Max ResultsmaxResultsinteger

The maximum number of jobs to retrieve. Default: 100

Action Authentication

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

To retrieve your API Keys,

  • Navigate to your Taleez account and sign in
  • Go to “Réglages” > “Outils” > “API & Webhooks”

About Taleez

Speed ​​up your recruitment processes.

More Ways to Connect Taleez + twocaptcha

Add Candidate to Job with Taleez API on New 2Captcha Balance Updated from twocaptcha API
twocaptcha + Taleez
 
Try it
Add Candidate to Job with Taleez API on New Captcha Solved from twocaptcha API
twocaptcha + Taleez
 
Try it
Create Candidate with Taleez API on New 2Captcha Balance Updated from twocaptcha API
twocaptcha + Taleez
 
Try it
Create Candidate with Taleez API on New Captcha Solved from twocaptcha API
twocaptcha + Taleez
 
Try it
List Jobs with Taleez API on New Captcha Solved from twocaptcha API
twocaptcha + Taleez
 
Try it
New 2Captcha Balance Updated from the twocaptcha API

Emit new event when the user's balance in 2Captcha API is changed.

 
Try it
New Captcha Solved from the twocaptcha API

Emit new event when a captcha has been successfully solved by the 2Captcha service.

 
Try it
New Candidate Created from the Taleez API

Emit new event when a candidate is added in Taleez. See the documentation

 
Try it
New Job Listing Created from the Taleez API

Emit new event when a job listing is created in Taleez. See the documentation

 
Try it
Check 2Captcha Account Balance with the twocaptcha API

Get the current account balance from the 2Captcha API. See the documentation

 
Try it
Retrieve Captcha Solution with the twocaptcha API

Fetch the solution of a previously submitted captcha from the 2Captcha service.

 
Try it
Submit Captcha for Solving with the twocaptcha API

Send a new captcha to the 2Captcha service for solving. Required props are clientKey and task object.

 
Try it
Add Candidate to Job with the Taleez API

Links an existing candidate to a job offer. See the documentation

 
Try it
Create Candidate with the Taleez API

Creates a new candidate in Taleez. See the documentation

 
Try it

Explore Other Apps

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

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
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.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
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.
Premium
Salesforce
Salesforce
Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
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.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
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
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.
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.