Harvest

Online Time Tracking and Invoicing Software

Integrate the Harvest API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Invoice Entry from Harvest API
Harvest + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Time Entry from Harvest API
Harvest + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Timesheet Entry from Harvest API
Harvest + Telegram Bot
 
Try it
Create Timesheet Entry with Harvest API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Harvest
 
Try it
Create Timesheet Entry with Harvest API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + Harvest
 
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 Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
New Channel Updates (Instant) from the Telegram Bot API

Emit new event each time a channel post is created or updated.

 
Try it
Create Timesheet Entry with the Harvest API
 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Get Projects with the Harvest API

Retrieve data for a project or projects. See docs here

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Edit a Media Message with the Telegram Bot API

Edits photo or video messages. See the docs for more information

 
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)`,
      },
    })
  },
})

Overview of Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})