HarborHarbor
DocumentationGuidesPlugins
All plugins

Asana API

Asana REST API for workspaces, users, projects, and teams

APICategory: devPopularity 81asana_api

Asana REST API for workspaces, users, projects, and teams

Install

hrbr plugins install asana-api

Harbor calls https://app.asana.com/api/1.0 (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await asana_api.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "asana-api-example",
  handler: async (ctx) => {
    return await ctx.plugins.asana_api.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools asana-api

Or open the dashboard plugin page for the live tool list.