RescueTime

A personal analytics service that shows you how you spend your time and provides tools to help you be more productive.

Integrate the RescueTime API with the Schedule API

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

New Daily Summary Report Created from the RescueTime API

Emit new event each time a new daily summary report is available. See the docs here

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it

Overview of RescueTime

The RescueTime API can help you obtain actionable insights from your digital
usage data. With it, you can develop projects that measure and compare daily
activity, measure time spent on specific tasks, and identify and track
productivity trends. With this powerful API, you have the ability to optimize
your productivity and understand how to best manage your digital life.

Here are some ways you can use the RescueTime API:

  • Monitor how much time you spend on specific tasks, websites and apps.
  • Analyze daily productivity and behavior over time.
  • Set up personal or team productivity goals.
  • Integrate with existing third-party systems to measure productivity.
  • Create customized reports and visualizations.
  • Run automations and get notifications based on specific digital activity.
  • Receive detailed time breakdowns for any timeframe.
  • Measure team productivity across multiple devices.

Connect RescueTime

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rescuetime: {
      type: "app",
      app: "rescuetime",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.rescuetime.com/api/oauth/data`,
      params: {
        access_token: `${this.rescuetime.$auth.oauth_access_token}`,
        perspective: `interval`,
        restrict_kind: `productivity`,
        interval: `hour`,
        restrict_begin: `2018-01-01`,
        restrict_end: `2018-01-31`,
        format: `json`,
      },
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.