Yanado brings satisfaction to teams by giving them a project management app that works inside their everyday tools. With Yanado, everyone can manage their project without ever leaving their favorite work tools.
Go to siteThe Yanado API is a powerful tool that enables developers to build custom project, task and relationship management solutions quickly and easily. By integrating it into your existing application, you can vastly improve overall productivity. Here are some of the useful applications you can create:
With the Yanado API, you can expect to build custom solutions faster and with greater ease. So start building your application today!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yanado: {
type: "app",
app: "yanado",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.yanado.com/public-api/users`,
headers: {
"X-API-Key": `${this.yanado.$auth.api_key}`,
},
})
},
})
Yanado uses API keys for authentication. When you connect your Yanado account, Pipedream securely stores the keys so you can easily authenticate to Yanado APIs in both code and no-code steps.
An API key can be obtained by signing in to Yanado.com, and then going to Settings > Integrations, then click on the plus button at the bottom right corner to generate a new key.