← Harvest

New Time Entry from Harvest API

Pipedream makes it easy to connect APIs for Harvest and 1000+ other apps remarkably fast.

Trigger workflow on
New Time Entry from the Harvest API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Trigger a workflow on New Time Entry with Harvest API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Time Entry trigger
    1. Connect your Harvest account
    2. Configure Polling interval
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on New Time Entry from Harvest API
Harvest + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Time Entry from Harvest API
Harvest + Google Sheets
 
Try it
Get Film with SWAPI - Star Wars API on New Time Entry from Harvest API
Harvest + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New Time Entry from Harvest API
Harvest + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Time Entry from Harvest API
Harvest + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

New Time Entry on Harvest
Description:Emit new notifications when a new time entry is created
Version:0.0.1
Key:harvest-new-timeentry-entry

Code

import harvest from "../../harvest.app.mjs";

export default {
  key: "harvest-new-timeentry-entry",
  name: "New Time Entry",
  description: "Emit new notifications when a new time entry is created",
  version: "0.0.1",
  type: "source",
  props: {
    harvest,
    timer: {
      label: "Polling interval",
      description: "Pipedream will poll Harvest API on this schedule",
      type: "$.interface.timer",
      default: {
        intervalSeconds: 60 * 15, // 15 minutes
      },
    },
    db: "$.service.db",
  },
  dedupe: "unique",
  async run() {
    const data = [];
    let lastDateChecked = this.harvest.getLastDateChecked(this.db);
    if (!lastDateChecked) {
      lastDateChecked = new Date().toISOString();
      this.harvest.setLastDateChecked(this.db, lastDateChecked);
    }
    const time_entries = await this.harvest.listTimeEntriesPaginated({
      page: 1,
      updatedSince: lastDateChecked,
    });
    for await (const time_entry of time_entries) {
      data.push(time_entry);
    }
    data && data.reverse().forEach((time_entry) => {
      this.harvest.setLastDateChecked(this.db, time_entry.updated_at);
      this.$emit(time_entry,
        {
          id: time_entry.id,
          summary: `Time Entry id: ${time_entry.id}`,
          ts: Date.parse(time_entry.updated_at),
        });
    });
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
HarvestharvestappThis component uses the Harvest app.
Polling intervaltimer$.interface.timer

Pipedream will poll Harvest API on this schedule

N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Authentication

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

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

About Harvest

Online Time Tracking and Invoicing Software

More Ways to Use Harvest

Triggers

New Invoice Entry from the Harvest API

Emit new notifications when a new invoice is created

 
Try it
New Timesheet Entry from the Harvest API

Emit new notifications when a new timesheet entry is created

 
Try it

Actions

Create Timesheet Entry with the Harvest API
 
Try it
Get Projects with the Harvest API

Retrieve data for a project or projects. See docs here

 
Try it
Start Time Entry with the Harvest API

Restart a stopped timer entry. See docs here

 
Try it
Stop Time Entry with the Harvest API

Stop a timer entry. See docs here

 
Try it