Harvest

Online Time Tracking and Invoicing Software

Integrate the Harvest API with the GitHub API

Setup the Harvest API trigger to run a workflow which integrates with the GitHub API. Pipedream's integration platform allows you to integrate Harvest and GitHub remarkably fast. Free for developers.

Create Issue with GitHub API on New Invoice Entry from Harvest API
Harvest + GitHub
 
Try it
Create Issue with GitHub API on New Time Entry from Harvest API
Harvest + GitHub
 
Try it
Create Issue with GitHub API on New Timesheet Entry from Harvest API
Harvest + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Invoice Entry from Harvest API
Harvest + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Time Entry from Harvest API
Harvest + GitHub
 
Try it
New Invoice Entry from the Harvest API

Emit new notifications when a new invoice is created

 
Try it
New Time Entry from the Harvest API

Emit new notifications when a new time entry is created

 
Try it
New Timesheet Entry from the Harvest API

Emit new notifications when a new timesheet entry is created

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
Create Timesheet Entry with the Harvest API
 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Get Projects with the Harvest API

Retrieve data for a project or projects. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See docs here

 
Try it

Overview of Harvest

The Harvest API allows developers to programmatically access data and objects
in Harvest, a web-based time tracking application. With the API, developers can
create applications that submit and retrieve time tracking data, as well as
automate various aspects of the Harvest user experience.

Some examples of what you can build using the Harvest API include:

  • A time tracking application that automatically submits time tracking data to
    Harvest on behalf of the user
  • A reporting application that retrieves time tracking data from Harvest and
    presents it in various charts and graphs
  • An integration with a third-party project management application that pulls
    in time tracking data from Harvest to provide a more complete picture of
    project progress

Connect Harvest

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: {
    harvest: {
      type: "app",
      app: "harvest",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://id.getharvest.com/api/v2/accounts`,
      headers: {
        Authorization: `Bearer ${this.harvest.$auth.oauth_access_token}`,
        "User-Agent": `Pipedream (pipedream.com)`,
      },
    })
  },
})

Connect GitHub

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: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})