Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Line API

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

Send Broadcast Message with Line API on Custom Interval from Schedule API
Schedule + Line
 
Try it
Send Broadcast Message with Line API on Daily schedule from Schedule API
Schedule + Line
 
Try it
Send Broadcast Message with Line API on Monthly Schedule from Schedule API
Schedule + Line
 
Try it
Send Broadcast Message with Line API on Weekly schedule from Schedule API
Schedule + Line
 
Try it
Send Notification Message with Line API on Custom Interval from Schedule API
Schedule + Line
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Message Received from the Line API

Emit new event for every received message in a channel. See docs here

 
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
Send Broadcast Message with the Line API

Sends a broadcast message to multiple users at any time. See docs

 
Try it
Send Notification Message with the Line API

Sends notifications to users or groups from LINE Notify. See docs

 
Try it
Send Push Message with the Line API

Sends a push message to a user, group, or room at any time. See docs

 
Try it
Send Reply Message with the Line API

Sends a reply message in response to an event from a user, group, or room. See docs

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Line

The Line API facilitates interaction with Line's messaging platform, enabling developers to send messages, manage user data, and leverage Line's rich social features within their applications. By using Pipedream, an integration platform, you can automate interactions with the Line API, connect to countless other services, and orchestrate complex workflows without managing servers.

Connect Line

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    line: {
      type: "app",
      app: "line",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://notify-api.line.me/api/status`,
      headers: {
        Authorization: `Bearer ${this.line.$auth.oauth_access_token}`,
      },
    })
  },
})