← Freshdesk + Motion integrations

Create Task with Motion API on New Contact Created from Freshdesk API

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

Trigger workflow on
New Contact Created from the Freshdesk API
Next, do this
Create Task with the Motion 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 Freshdesk trigger and Motion 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 Contact Created trigger
    1. Connect your Freshdesk account
    2. Configure timer
  3. Configure the Create Task action
    1. Connect your Motion account
    2. Select a Workspace Id
    3. Optional- Select a Project Id
    4. Optional- Configure Due Date
    5. Optional- Configure Duration
    6. Configure Name
    7. Optional- Configure Description
    8. Optional- Select a Priority
    9. Optional- Select a Assignee Id
    10. Optional- Select one or more Labels
    11. Optional- Select a Status
  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 contact is created. [See the documentation](https://developers.freshdesk.com/api/#filter_contacts)
Version:0.0.5
Key:freshdesk-new-contact

Freshdesk Overview

The Freshdesk API empowers you to interact programmatically with your customer support platform, creating possibilities for automating repetitive tasks, integrating with other services, and enhancing customer experiences. With Pipedream, you can effortlessly connect Freshdesk to a multitude of apps, tapping into triggers and actions that streamline workflows. For instance, you can automate ticket creation, sync customer issues with a CRM, or trigger notifications based on ticket updates, all within a serverless environment.

Trigger Code

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

export default {
  key: "freshdesk-new-contact",
  name: "New Contact Created",
  description: "Emit new event when a contact is created. [See the documentation](https://developers.freshdesk.com/api/#filter_contacts)",
  version: "0.0.5",
  type: "source",
  props: {
    freshdesk,
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
    db: "$.service.db",
  },
  dedupe: "unique",
  async run() {
    const data = [];
    let lastDateChecked = this.freshdesk.getLastDateChecked(this.db);
    if (!lastDateChecked) {
      lastDateChecked = new Date().toISOString();
      this.freshdesk.setLastDateChecked(this.db, lastDateChecked);
    }
    const formatedDate = lastDateChecked.substr(0, (lastDateChecked + "T").indexOf("T"));
    const contacts = await this.freshdesk.filterContacts({
      query: `"created_at:>'${formatedDate}'"`,
      page: 1,
    });
    for await (const contact of contacts) {
      data.push(contact);
    }
    data && data.reverse().forEach((contact) => {
      this.freshdesk.setLastDateChecked(this.db, contact.created_at);
      if (moment(contact.created_at).isAfter(lastDateChecked)) {
        this.$emit(contact,
          {
            id: contact.id,
            summary: `New Contact: "${contact.name}"`,
            ts: Date.parse(contact.created_at),
          });
      }
    });
  },
};

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

Trigger Authentication

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

About Freshdesk

Customer support software

Action

Description:Create a new task. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/0846d1205f9b3-create-task)
Version:0.0.1
Key:motion-create-task

Motion Overview

The Motion API empowers users to streamline project management and productivity tasks. Within Pipedream's environment, you can leverage this API to automate actions based on project updates, task completions, and team collaborations. It's a toolset that sails smoothly with Pipedream's knack for creating swift integrations and workflows, making it possible to connect Motion with other apps to optimize project tracking, notifications, and data synchronization.

Action Code

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

export default {
  key: "motion-create-task",
  name: "Create Task",
  version: "0.0.1",
  description: "Create a new task. [See the documentation](https://docs.usemotion.com/docs/motion-rest-api/0846d1205f9b3-create-task)",
  type: "action",
  props: {
    motion,
    workspaceId: {
      propDefinition: [
        motion,
        "workspaceId",
      ],
    },
    projectId: {
      propDefinition: [
        motion,
        "projectId",
        ({ workspaceId }) => ({
          workspaceId,
        }),
      ],
      optional: true,
    },
    dueDate: {
      propDefinition: [
        motion,
        "dueDate",
      ],
      optional: true,
    },
    duration: {
      propDefinition: [
        motion,
        "duration",
      ],
      optional: true,
    },
    name: {
      propDefinition: [
        motion,
        "name",
      ],
    },
    description: {
      propDefinition: [
        motion,
        "description",
      ],
      optional: true,
    },
    priority: {
      propDefinition: [
        motion,
        "priority",
      ],
      optional: true,
    },
    assigneeId: {
      propDefinition: [
        motion,
        "assigneeId",
        ({ workspaceId }) => ({
          workspaceId,
        }),
      ],
      optional: true,
    },
    labels: {
      propDefinition: [
        motion,
        "labelId",
        ({ workspaceId }) => ({
          workspaceId,
        }),
      ],
      optional: true,
    },
    status: {
      propDefinition: [
        motion,
        "status",
        ({ workspaceId }) => ({
          workspaceId,
        }),
      ],
      reloadProps: true,
      optional: true,
    },
  },
  async additionalProps() {
    const props = {};
    if (this.status === "Auto-Scheduled") {
      props.startDate = {
        type: "string",
        label: "Auto Scheduled Start Date",
        description: "ISO 8601 Date which is trimmed to the start of the day passed. Default: `2023-06-28T06:00:00.000Z` Example: `2023-06-28`.",
        optional: true,
      };
      props.deadlineType = {
        type: "string",
        label: "Auto Scheduled Deadline Type",
        description: "The type of the deadline.",
        options: [
          "HARD",
          "SOFT",
          "NONE",
        ],
        optional: true,
      };
      props.schedule = {
        type: "string",
        label: "Schedule",
        description: "Schedule the task must adhere to. Schedule MUST be 'Work Hours' if scheduling the task for another user.",
        default: "Work Hours",
        optional: true,
      };
    }
    return props;
  },
  async run({ $ }) {
    const {
      motion,
      status,
      startDate,
      deadlineType,
      duration,
      schedule,
      ...data
    } = this;

    if (status === "Auto-Scheduled") {
      data.autoScheduled = {};
      if (startDate) data.autoScheduled.startDate = startDate;
      if (deadlineType) data.autoScheduled.deadlineType = deadlineType;
      if (schedule) data.autoScheduled.schedule = schedule;
    }

    const response = await motion.createTask({
      $,
      data: {
        ...data,
        duration: parseInt(duration) || duration,
        status,
      },
    });

    $.export("$summary", `The task with Id: ${response.id} was successfully created!`);
    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
MotionmotionappThis component uses the Motion app.
Workspace IdworkspaceIdstringSelect a value from the drop down menu.
Project IdprojectIdstringSelect a value from the drop down menu.
Due DatedueDatestring

ISO 8601 Due date on the task. REQUIRED for scheduled tasks Example: 2023-06-28T10:11:14.320-06:00

Durationdurationstring

A duration can be one of the following... NONE, REMINDER, or a integer greater than 0.

Namenamestring

Name / title of the task.

Descriptiondescriptionstring

Input as GitHub Flavored Markdown.

PriorityprioritystringSelect a value from the drop down menu:ASAPHIGHMEDIUMLOW
Assignee IdassigneeIdstringSelect a value from the drop down menu.
Labelslabelsstring[]Select a value from the drop down menu.
StatusstatusstringSelect a value from the drop down menu.

Action Authentication

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

About Motion

Manage calendars, meetings, projects & tasks in one tool

More Ways to Connect Motion + Freshdesk

Create Task with Motion API on New Ticket from Freshdesk API
Freshdesk + Motion
 
Try it
Move Workspace with Motion API on New Contact from Freshdesk API
Freshdesk + Motion
 
Try it
Move Workspace with Motion API on New Ticket from Freshdesk API
Freshdesk + Motion
 
Try it
Delete Task with Motion API on New Contact from Freshdesk API
Freshdesk + Motion
 
Try it
Delete Task with Motion API on New Ticket from Freshdesk API
Freshdesk + Motion
 
Try it
New Contact Created from the Freshdesk API

Emit new event when a contact is created. See the documentation

 
Try it
New Ticket Created from the Freshdesk API

Emit new event when a ticket is created. See the documentation

 
Try it
Task Status Updated from the Motion API

Emit new event when the status of a specific task is updated.

 
Try it
Assign Ticket to Agent with the Freshdesk API

Assign a Freshdesk ticket to a specific agent. See the documentation

 
Try it
Assign Ticket to Group with the Freshdesk API

Assign a Freshdesk ticket to a specific group See the documentation

 
Try it
Close Ticket with the Freshdesk API

Set a Freshdesk ticket's status to 'Closed'. See docs

 
Try it
Create a Company with the Freshdesk API

Create a company. See the documentation

 
Try it
Create a Contact with the Freshdesk API

Create a contact. 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.