← Zoho Sprints + GitLab integrations

Update Epic with GitLab API on New Project Created (Instant) from Zoho Sprints API

Pipedream makes it easy to connect APIs for GitLab, Zoho Sprints and 3,000+ other apps remarkably fast.

Trigger workflow on
New Project Created (Instant) from the Zoho Sprints API
Next, do this
Update Epic with the GitLab 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 Zoho Sprints trigger and GitLab 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 Project Created (Instant) trigger
    1. Connect your Zoho Sprints account
    2. Select a Team
  3. Configure the Update Epic action
    1. Connect your GitLab account
    2. Select a Group ID
    3. Select a Epic Internal ID
    4. Optional- Select one or more Add labels
    5. Optional- Configure Confidential
    6. Optional- Configure Description
    7. Optional- Select one or more Labels
    8. Optional- Select a Parent Id
    9. Optional- Select one or more Remove labels
    10. Optional- Select a State Event
    11. Optional- Configure Title
    12. Optional- Configure Updated at
    13. Optional- Configure Color
    14. Optional- Configure Start Date Is Fixed
    15. Optional- Configure Due Date Is Fixed
  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 project is created in Zoho Sprints.
Version:0.0.1
Key:zoho_sprints-new-project-created

Zoho Sprints Overview

Zoho Sprints is a versatile agile project management tool that enables teams to plan, track, and iterate their work in sprints. With the Zoho Sprints API, you can automate your agile workflows, sync projects across different platforms, and create custom dashboards to monitor progress. Using Pipedream, you can connect Zoho Sprints with 3,000+ apps to streamline processes, trigger actions based on sprint changes, and manipulate sprint data programmatically.

Trigger Code

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

export default {
  ...common,
  key: "zoho_sprints-new-project-created",
  name: "New Project Created (Instant)",
  description: "Emit new event when a new project is created in Zoho Sprints.",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getModule() {
      return "0"; // 0 = Project
    },
    getEventType() {
      return "project_create";
    },
    getKeyValParams() {
      return [
        {
          key: "projectId",
          val: "${Project.ProjectId}",
        },
      ];
    },
    generateMeta() {
      return {
        id: Date.now(),
        summary: "New Project Created",
        ts: Date.now(),
      };
    },
  },
  async run(event) {
    const { query } = event;
    if (!query) {
      return;
    }
    const { projectId } = query;
    const project = await this.zohoSprints.getProject({
      teamId: this.teamId,
      projectId,
      params: {
        action: "details",
      },
    });

    this.$emit(project, this.generateMeta());
  },
};

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
Zoho SprintszohoSprintsappThis component uses the Zoho Sprints app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
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.
TeamteamIdstringSelect a value from the drop down menu.

Trigger Authentication

Zoho Sprints uses OAuth authentication. When you connect your Zoho Sprints account, Pipedream will open a popup window where you can sign into Zoho Sprints and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoho Sprints API.

Pipedream requests the following authorization scopes when you connect your account:

ZohoSprints.projects.READZohoSprints.projects.CREATEZohoSprints.teams.READZohoSprints.projects.UPDATEZohoSprints.items.CREATEZohoSprints.items.READZohoSprints.sprints.READZohoSprints.projectusers.READZohoSprints.epic.READZohoSprints.webhook.CREATEZohoSprints.webhook.READZohoSprints.webhook.DELETEZohoSprints.items.DELETE

About Zoho Sprints

Zoho Sprints provides a feature-rich agile project management tool with Scrum Board, agile reports, backlog, timesheets, meetings and dashboard.

Action

Description:Updates an epic. [See the documentation](https://docs.gitlab.com/ee/api/epics.html#update-epic)
Version:0.0.4
Key:gitlab-update-epic

GitLab Overview

The GitLab API provides programmatic access to your GitLab projects, allowing you to automate common tasks, manage issues, merge requests, and more. With the GitLab API on Pipedream, you can create customized workflows that integrate with other services, streamline your development process, and enhance project management. By leveraging the power of serverless, you can set up triggers for GitLab events and perform actions across a variety of apps without managing infrastructure.

Action Code

import lodash from "lodash";
import gitlab from "../../gitlab.app.mjs";

export default {
  key: "gitlab-update-epic",
  name: "Update Epic",
  description: "Updates an epic. [See the documentation](https://docs.gitlab.com/ee/api/epics.html#update-epic)",
  version: "0.0.4",
  annotations: {
    destructiveHint: true,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    gitlab,
    groupId: {
      propDefinition: [
        gitlab,
        "groupId",
      ],
    },
    epicIid: {
      propDefinition: [
        gitlab,
        "epicIid",
        ({ groupId }) => ({
          groupId,
        }),
      ],
    },
    add_labels: {
      propDefinition: [
        gitlab,
        "groupLabels",
        ({ groupId }) => ({
          groupId,
        }),
      ],
      label: "Add labels",
    },
    confidential: {
      propDefinition: [
        gitlab,
        "confidential",
      ],
    },
    description: {
      propDefinition: [
        gitlab,
        "description",
      ],
      description: "The description of the issue",
    },
    labels: {
      propDefinition: [
        gitlab,
        "groupLabels",
        ({ groupId }) => ({
          groupId,
        }),
      ],
      description: "Comma-separated label names for an issue. Set to an empty string to unassign all labels.",
    },
    parent_id: {
      propDefinition: [
        gitlab,
        "epicIid",
        ({ groupId }) => ({
          groupId,
        }),
      ],
      label: "Parent Id",
      description: "The ID of a parent epic. Available in GitLab 14.6 and later",
      optional: true,
    },
    remove_labels: {
      propDefinition: [
        gitlab,
        "groupLabels",
        ({ groupId }) => ({
          groupId,
        }),
      ],
      label: "Remove labels",
      description: "Comma-separated label names to remove from an issue.",
    },
    stateEvent: {
      propDefinition: [
        gitlab,
        "stateEvent",
      ],
      options: [
        "close",
        "reopen",
      ],
      optional: true,
    },
    title: {
      propDefinition: [
        gitlab,
        "title",
      ],
      description: "The title of an epic",
      optional: true,
    },
    updated_at: {
      propDefinition: [
        gitlab,
        "updated_at",
      ],
    },
    color: {
      propDefinition: [
        gitlab,
        "color",
      ],
    },
    start_date_is_fixed: {
      propDefinition: [
        gitlab,
        "start_date_is_fixed",
      ],
      reloadProps: true,
    },
    due_date_is_fixed: {
      propDefinition: [
        gitlab,
        "due_date_is_fixed",
      ],
      reloadProps: true,
    },
  },
  async additionalProps() {
    const props = {};
    if (this.start_date_is_fixed) {
      props.start_date_fixed = {
        type: "string",
        label: "Start date fixed",
        description: "The fixed start date of an epic (in GitLab 11.3 and later)",
      };
    }
    if (this.due_date_is_fixed) {
      props.due_date_fixed = {
        type: "string",
        label: "Due date fixed",
        description: "The fixed due date of an epic (in GitLab 11.3 and later)",
      };
    }
    return props;
  },
  async run({ $ }) {
    const data = lodash.pickBy(lodash.pick(this, [
      "add_labels",
      "confidential",
      "description",
      "due_date_is_fixed",
      "due_date_fixed",
      "labels",
      "parent_id",
      "remove_labels",
      "start_date_is_fixed",
      "start_date_fixed",
      "stateEvent",
      "title",
      "updated_at",
      "color",
    ]));
    data.labels = data.labels?.join();

    const response = await this.gitlab.updateEpic(this.groupId, this.epicIid, {
      data,
    });
    $.export("$summary", `Updated epic ${this.epicIid}`);
    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
GitLabgitlabappThis component uses the GitLab app.
Group IDgroupIdstringSelect a value from the drop down menu.
Epic Internal IDepicIidstringSelect a value from the drop down menu.
Add labelsadd_labelsstring[]Select a value from the drop down menu.
Confidentialconfidentialboolean

Whether the epic should be confidential

Descriptiondescriptionstring

The description of the issue

Labelslabelsstring[]Select a value from the drop down menu.
Parent Idparent_idstringSelect a value from the drop down menu.
Remove labelsremove_labelsstring[]Select a value from the drop down menu.
State EventstateEventstringSelect a value from the drop down menu:closereopen
Titletitlestring

The title of an epic

Updated atupdated_atstring

When the epic was updated. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z . Requires administrator or project/group owner privileges (available in GitLab 13.5 and later)

Colorcolorstring

The color of the epic. Introduced in GitLab 14.8, behind a feature flag named epic_highlight_color (disabled by default)

Start Date Is Fixedstart_date_is_fixedboolean

Whether start date should be sourced from start_date_fixed or from milestones (in GitLab 11.3 and later)

Due Date Is Fixeddue_date_is_fixedboolean

Whether due date should be sourced from due_date_fixed or from milestones (in GitLab 11.3 and later)

Action Authentication

GitLab uses OAuth authentication. When you connect your GitLab account, Pipedream will open a popup window where you can sign into GitLab and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any GitLab API.

Pipedream requests the following authorization scopes when you connect your account:

apiread_userread_repositorywrite_repositoryread_registrysudoopenidprofileemail

About GitLab

GitLab is the most comprehensive AI-powered DevSecOps Platform.

More Ways to Connect GitLab + Zoho Sprints

Create Item with Zoho Sprints API on New Branch (Instant) from Gitlab API
GitLab + Zoho Sprints
 
Try it
Create Item with Zoho Sprints API on New Commit Comment (Instant) from Gitlab API
GitLab + Zoho Sprints
 
Try it
Create Item with Zoho Sprints API on New Issue (Instant) from Gitlab API
GitLab + Zoho Sprints
 
Try it
Create Item with Zoho Sprints API on New Mention (Instant) from Gitlab API
GitLab + Zoho Sprints
 
Try it
Create Item with Zoho Sprints API on New Merge Request (Instant) from Gitlab API
GitLab + Zoho Sprints
 
Try it
New Item Updated (Instant) from the Zoho Sprints API

Emit new event when an existing item in Zoho Sprints is modified.

 
Try it
New Project Created (Instant) from the Zoho Sprints API

Emit new event when a new project is created in Zoho Sprints.

 
Try it
New Commit (Instant) from the GitLab API

Emit new event when a new commit is pushed to a branch

 
Try it
New Branch (Instant) from the GitLab API

Emit new event when a new branch is created

 
Try it
New Project from the GitLab API

Emit new event when a project (i.e. repository) is created

 
Try it
Create Item with the Zoho Sprints API

Creates a new task, story, or bug in an existing Zoho Sprints project. See the documentation

 
Try it
Delete Item with the Zoho Sprints API

Removes a specified task, story, or bug from a project in Zoho Sprints. See the documentation

 
Try it
Update Project Status with the Zoho Sprints API

Changes the status of an existing project in Zoho Sprints. See the documentation

 
Try it
Create Branch with the GitLab API

Create a new branch in the repository. See the documentation

 
Try it
Create Epic with the GitLab API

Creates a new epic. 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.