Yodiz

Agile Scrum Tool - Know where you stand, know where you’re going. From idea to delivery - we have covered you.

Go to site

Yodiz API Integrations

Build and run workflows using the Yodiz API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Using the Yodiz API, you can build all sorts of applications and integrations that can help you stay organized and focused on your work. Here are some examples of what you can build using the Yodiz API:

  • Tracking for features, tasks and bugs
  • Automated tracking of progress and performance against goals
  • Connecting external services such as Google Calendar
  • Receive notifications on any project updates
  • Easily pull project data (like backlogs and reports) into dashboards
  • Multiple roles and privilege levels
  • Customized views of project data
  • Comprehensive analytics and reporting
  • Integration with existing enterprise tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    yodiz: {
      type: "app",
      app: "yodiz",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.yodiz.com/api/rest/v1/projects?fields=all`,
      headers: {
        "api-key": `${this.yodiz.$auth.api_key}`,
        "api-token": `${this.yodiz.$auth.oauth_access_token}`,
      },
    })
  },
})

Authentication

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

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

OAuth Request Configurations:
  1. accessToken
    POSThttps://app.yodiz.com/api/rest/v1/logincontent-type: application/jsonaccept: application/jsonapi-key: {{custom_fields.api_key}}
    email={{custom_fields.email}}&password={{custom_fields.password}}