← SwaggerHub + Tellent Recruitee integrations

Create Task with Tellent Recruitee API on New API Version Created from SwaggerHub API

Pipedream makes it easy to connect APIs for Tellent Recruitee, SwaggerHub and 2,700+ other apps remarkably fast.

Trigger workflow on
New API Version Created from the SwaggerHub API
Next, do this
Create Task with the Tellent Recruitee 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 SwaggerHub trigger and Tellent Recruitee 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 API Version Created trigger
    1. Connect your SwaggerHub account
    2. Configure timer
    3. Configure Owner
    4. Select a API
  3. Configure the Create Task action
    1. Connect your Tellent Recruitee account
    2. Configure Title
    3. Optional- Select a Candidate ID
    4. Optional- Configure Description
    5. Optional- Configure Due Date
    6. Optional- Select a Timezone
  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 every created version of a specific API. [See the docs here](https://app.swaggerhub.com/apis/swagger-hub/registry-api/1.0.66#/APIs/getApiVersions)
Version:0.0.1
Key:swaggerhub-api-version-created

SwaggerHub Overview

The SwaggerHub API offers capabilities to streamline working with your Swagger (OpenAPI) definitions within SwaggerHub. On Pipedream, you can automate interactions with the SwaggerHub API to keep APIs in sync, manage your API versions, and integrate your API design workflow with other tools and services. Leverage Pipedream's serverless platform to create, update, and share your SwaggerHub API definitions across different environments or teams efficiently.

Trigger Code

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

export default {
  ...base,
  key: "swaggerhub-api-version-created",
  name: "New API Version Created",
  description: "Emit new event for every created version of a specific API. [See the docs here](https://app.swaggerhub.com/apis/swagger-hub/registry-api/1.0.66#/APIs/getApiVersions)",
  type: "source",
  dedupe: "unique",
  version: "0.0.1",
};

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

The owner of the API .e.g HUNGV. Please tap Refresh field on the other props after you change the value in this prop to get the up-to-date data.

APIapistringSelect a value from the drop down menu.

Trigger Authentication

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

To retrieve your API Key,

  • Navigate to your SwaggerHub account and sign in
  • Click the dropdown on the top right
  • Go to “API Key”

About SwaggerHub

Accelerating API delivery and quality through standards and collaboration, built on OpenAPI.

Action

Description:Create a new task for a candidate. [See the documentation](https://api.recruitee.com/docs/index.html#task.web.task-task.web.task-post)
Version:0.0.1
Key:recruitee-create-task

Tellent Recruitee Overview

The Recruitee API allows you to automate and integrate your recruitment process with other tools and services. It provides programmatic access to manipulate jobs, candidates, and various recruitment activities. By using Pipedream, you can create custom workflows that interact with the Recruitee platform, enabling you to streamline your hiring process, synchronize recruitment data with other systems, and trigger actions based on recruitment events.

Action Code

import app from "../../recruitee.app.mjs";
import timezones from "../common/timezones.mjs";

export default {
  name: "Create Task",
  description: "Create a new task for a candidate. [See the documentation](https://api.recruitee.com/docs/index.html#task.web.task-task.web.task-post)",
  key: "recruitee-create-task",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    title: {
      type: "string",
      label: "Title",
      description: "The task title",
    },
    candidateId: {
      propDefinition: [
        app,
        "candidateId",
      ],
    },
    description: {
      type: "string",
      label: "Description",
      description: "The task description",
      optional: true,
    },
    dueDate: {
      type: "string",
      label: "Due Date",
      description: "The task due date. format as [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) e.g. `2023-11-15T08:30:00Z`",
      optional: true,
    },
    timezone: {
      type: "string",
      label: "Timezone",
      description: "The task timezone",
      optional: true,
      options: timezones,
    },
  },
  async run({ $ }) {
    const payload = {
      candidate_id: this.candidateId,
      description: this.description,
      due_date: this.dueDate,
      timezone: this.timezone,
      title: this.title,
    };
    const response = await this.app.createTask({
      $,
      data: {
        task: payload,
      },
    });
    $.export("$summary", `Successfully created task with ID \`${response.task.id}\``);
    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
Tellent RecruiteeappappThis component uses the Tellent Recruitee app.
Titletitlestring

The task title

Candidate IDcandidateIdintegerSelect a value from the drop down menu.
Descriptiondescriptionstring

The task description

Due DatedueDatestring

The task due date. format as ISO 8601 e.g. 2023-11-15T08:30:00Z

TimezonetimezonestringSelect a value from the drop down menu:{ "label": "Adelaide", "value": "Australia/Adelaide" }{ "label": "Aden", "value": "Asia/Aden" }{ "label": "Alaska", "value": "America/Anchorage" }{ "label": "Algiers", "value": "Africa/Algiers" }{ "label": "Almaty", "value": "Asia/Almaty" }{ "label": "Amman", "value": "Asia/Amman" }{ "label": "Amsterdam", "value": "Europe/Amsterdam" }{ "label": "Amsterdam, Berlin, Rome, Stockholm, Vienna", "value": "Europe/Berlin" }{ "label": "Arizona", "value": "America/Phoenix" }{ "label": "Astana, Dhaka", "value": "Asia/Dhaka" }{ "label": "Athens", "value": "Europe/Athens" }{ "label": "Atlantic Time (Canada)", "value": "Canada/Atlantic" }{ "label": "Auckland, Wellington", "value": "Pacific/Auckland" }{ "label": "Azores", "value": "Atlantic/Azores" }{ "label": "Baghdad", "value": "Asia/Baghdad" }{ "label": "Bahrain", "value": "Asia/Bahrain" }{ "label": "Baku, Tbilisi, Yerevan", "value": "Asia/Baku" }{ "label": "Bangkok", "value": "Asia/Bangkok" }{ "label": "Beijing, Shanghai", "value": "Asia/Shanghai" }{ "label": "Beirut", "value": "Asia/Beirut" }{ "label": "Belgrade, Bratislava, Ljubljana", "value": "Europe/Belgrade" }{ "label": "Bogota", "value": "America/Bogota" }{ "label": "Brasilia", "value": "America/Araguaina" }{ "label": "Brisbane", "value": "Australia/Brisbane" }{ "label": "Brussels", "value": "Europe/Brussels" }{ "label": "Bucharest", "value": "Europe/Bucharest" }{ "label": "Budapest", "value": "Europe/Budapest" }{ "label": "Buenos Aires, Georgetown", "value": "America/Argentina/Buenos_Aires" }{ "label": "Cairo", "value": "Africa/Cairo" }{ "label": "Canberra, Melbourne, Sydney", "value": "Australia/Sydney" }{ "label": "Cape Verde Islands", "value": "Atlantic/Cape_Verde" }{ "label": "Caracas", "value": "America/Caracas" }{ "label": "Casablanca", "value": "Africa/Casablanca" }{ "label": "Central Time (US and Canada)", "value": "America/Chicago" }{ "label": "Copenhagen", "value": "Europe/Copenhagen" }{ "label": "Costa Rica", "value": "America/Costa_Rica" }{ "label": "Dacca", "value": "Asia/Dacca" }{ "label": "Damascus", "value": "Asia/Damascus" }{ "label": "Darwin", "value": "Australia/Darwin" }{ "label": "Djibouti", "value": "Africa/Djibouti" }{ "label": "Dubai", "value": "Asia/Dubai" }{ "label": "Dublin", "value": "Europe/Dublin" }{ "label": "Eastern Time (US and Canada)", "value": "America/New_York" }{ "label": "Edmonton", "value": "America/Edmonton" }{ "label": "El Salvador", "value": "America/El_Salvador" }{ "label": "Fiji Islands, Marshall Islands", "value": "Pacific/Fiji" }{ "label": "Greenland", "value": "America/Godthab" }{ "label": "Greenwich Mean Time", "value": "Etc/Greenwich" }{ "label": "Guam, Port Moresby", "value": "Pacific/Port_Moresby" }{ "label": "Guatemala", "value": "America/Guatemala" }{ "label": "Halifax", "value": "America/Halifax" }{ "label": "Harare, Pretoria", "value": "Africa/Harare" }{ "label": "Hawaii", "value": "Pacific/Honolulu" }{ "label": "Helsinki", "value": "Europe/Helsinki" }{ "label": "Hobart", "value": "Australia/Hobart" }{ "label": "Hong Kong", "value": "Asia/Hong_Kong" }{ "label": "Independent State of Samoa", "value": "Pacific/Apia" }{ "label": "India", "value": "Asia/Calcutta" }{ "label": "Indiana (East)", "value": "America/Indianapolis" }{ "label": "Irkutsk, Ulaanbaatar", "value": "Asia/Irkutsk" }{ "label": "Islamabad, Karachi, Tashkent", "value": "Asia/Tashkent" }{ "label": "Istanbul", "value": "Europe/Istanbul" }{ "label": "Jakarta", "value": "Asia/Jakarta" }{ "label": "Jerusalem", "value": "Asia/Jerusalem" }{ "label": "Johannesburg", "value": "Africa/Johannesburg" }{ "label": "Kabul", "value": "Asia/Kabul" }{ "label": "Kamchatka", "value": "Asia/Kamchatka" }{ "label": "Kathmandu", "value": "Asia/Kathmandu" }{ "label": "Khartoum", "value": "Africa/Khartoum" }{ "label": "Kiev", "value": "Europe/Kiev" }{ "label": "Krasnoyarsk", "value": "Asia/Krasnoyarsk" }{ "label": "Kuala Lumpur", "value": "Asia/Kuala_Lumpur" }{ "label": "Kuwait", "value": "Asia/Kuwait" }{ "label": "Lima", "value": "America/Lima" }{ "label": "Lisbon", "value": "Europe/Lisbon" }{ "label": "London", "value": "Europe/London" }{ "label": "Luxembourg", "value": "Europe/Luxembourg" }{ "label": "Madrid", "value": "Europe/Madrid" }{ "label": "Magadan", "value": "Asia/Magadan" }{ "label": "Managua", "value": "America/Managua" }{ "label": "Mazatlan", "value": "America/Mazatlan" }{ "label": "Mexico City", "value": "America/Mexico_City" }{ "label": "Midway Island, Samoa", "value": "Pacific/Midway" }{ "label": "Mogadishu", "value": "Africa/Mogadishu" }{ "label": "Montevideo", "value": "America/Montevideo" }{ "label": "Montreal", "value": "America/Montreal" }{ "label": "Moscow", "value": "Europe/Moscow" }{ "label": "Mountain Time (US and Canada)", "value": "America/Denver" }{ "label": "Mumbai, Kolkata, New Delhi", "value": "Asia/Kolkata" }{ "label": "Muscat", "value": "Asia/Muscat" }{ "label": "Nairobi", "value": "Africa/Nairobi" }{ "label": "New Caledonia", "value": "Pacific/Noumea" }{ "label": "Newfoundland and Labrador", "value": "America/St_Johns" }{ "label": "Nicosia", "value": "Asia/Nicosia" }{ "label": "Nouakchott", "value": "Africa/Nouakchott" }{ "label": "Novosibirsk", "value": "Asia/Novosibirsk" }{ "label": "Osaka, Sapporo, Tokyo", "value": "Asia/Tokyo" }{ "label": "Oslo", "value": "Europe/Oslo" }{ "label": "Pacific Time (US and Canada)", "value": "America/Los_Angeles" }{ "label": "Pago Pago", "value": "Pacific/Pago_Pago" }{ "label": "Panama", "value": "America/Panama" }{ "label": "Paris", "value": "Europe/Paris" }{ "label": "Perth", "value": "Australia/Perth" }{ "label": "Prague Bratislava", "value": "Europe/Prague" }{ "label": "Puerto Rico", "value": "America/Puerto_Rico" }{ "label": "Qatar", "value": "Asia/Qatar" }{ "label": "Reykjavik", "value": "Atlantic/Reykjavik" }{ "label": "Riyadh", "value": "Asia/Riyadh" }{ "label": "Rome", "value": "Europe/Rome" }{ "label": "Santiago", "value": "America/Santiago" }{ "label": "Sao Paulo", "value": "America/Sao_Paulo" }{ "label": "Sarajevo, Skopje, Zagreb", "value": "CET" }{ "label": "Saskatchewan", "value": "America/Regina" }{ "label": "Seoul", "value": "Asia/Seoul" }{ "label": "Singapore", "value": "Asia/Singapore" }{ "label": "Sofia", "value": "Europe/Sofia" }{ "label": "Solomon Islands", "value": "SST" }{ "label": "Stockholm", "value": "Europe/Stockholm" }{ "label": "Taipei", "value": "Asia/Taipei" }{ "label": "Tegucigalpa", "value": "America/Tegucigalpa" }{ "label": "Tehran", "value": "Asia/Tehran" }{ "label": "Tijuana", "value": "America/Tijuana" }{ "label": "Tripoli", "value": "Africa/Tripoli" }{ "label": "Tunis", "value": "Africa/Tunis" }{ "label": "Universal Time UTC", "value": "UTC" }{ "label": "Vancouver", "value": "America/Vancouver" }{ "label": "Vienna", "value": "Europe/Vienna" }{ "label": "Vietnam", "value": "Asia/Saigon" }{ "label": "Vladivostok", "value": "Asia/Vladivostok" }{ "label": "Warsaw", "value": "Europe/Warsaw" }{ "label": "West Central Africa", "value": "Africa/Bangui" }{ "label": "Winnipeg", "value": "America/Winnipeg" }{ "label": "Yakutsk", "value": "Asia/Yakutsk" }{ "label": "Yekaterinburg", "value": "Asia/Yekaterinburg" }{ "label": "Zurich", "value": "Europe/Zurich" }

Action Authentication

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

To retrieve your Company and API details,

  • Navigate to your Recruitee account and sign in
  • Go to “Settings” > “Apps and plugins” > “Apps and plugins” > “Personal API Tokens”

About Tellent Recruitee

The #1 easy-to-use collaborative hiring software that helps companies build great teams together. Made by Tellent.

More Ways to Connect Tellent Recruitee + SwaggerHub

Clone API Version with SwaggerHub API on New Candidate Created from Tellent Recruitee API
Tellent Recruitee + SwaggerHub
 
Try it
Delete API Version with SwaggerHub API on New Candidate Created from Tellent Recruitee API
Tellent Recruitee + SwaggerHub
 
Try it
Create Candidate with Tellent Recruitee API on New API Version Created from SwaggerHub API
SwaggerHub + Tellent Recruitee
 
Try it
Create Note with Tellent Recruitee API on New API Version Created from SwaggerHub API
SwaggerHub + Tellent Recruitee
 
Try it
New API Version Created from the SwaggerHub API

Emit new event for every created version of a specific API. See the docs here

 
Try it
New Candidate Created from the Tellent Recruitee API

Emit new event when a new candidate is created. See the Documentation

 
Try it
Clone API Version with the SwaggerHub API

Clones a version for an API. See the docs here

 
Try it
Delete API Version with the SwaggerHub API

Deletes a version of an API. See the docs here

 
Try it
Create Candidate with the Tellent Recruitee API

Create a new candidate. See the documentation

 
Try it
Create Note with the Tellent Recruitee API

Create a new note for a candidate. See the documentation

 
Try it
Create Task with the Tellent Recruitee API

Create a new task for a candidate. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,700+
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
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.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
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.
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.