Agile Scrum Tool - Know where you stand, know where you’re going. From idea to delivery - we have covered you.
Go to siteUsing 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:
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}`,
},
})
},
})
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:
POST
https://app.yodiz.com/api/rest/v1/login
content-type: application/json
accept: application/json
api-key: {{custom_fields.api_key}}
email={{custom_fields.email}}
&
password={{custom_fields.password}}