Lighthouse

Lighthouse is a beautifully simple issue tracker changing the way thousands manage their issues.

Integrate the Lighthouse API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Message Created from Lighthouse API
Lighthouse + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Milestone Created from Lighthouse API
Lighthouse + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Project Created from Lighthouse API
Lighthouse + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Ticket Created from Lighthouse API
Lighthouse + Telegram Bot
 
Try it
Create Milestone with Lighthouse API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + Lighthouse
 
Try it
New Message Created from the Lighthouse API

Emit new event for each new message created.

 
Try it
New Milestone Created from the Lighthouse API

Emit new event for each new milestone created.

 
Try it
New Project Created from the Lighthouse API

Emit new event for each new project created.

 
Try it
New Ticket Created from the Lighthouse API

Emit new event for each new ticket 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
Create Milestone with the Lighthouse API

Creates a milestone. See docs here

 
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
Create Project with the Lighthouse API

Creates a project. See docs here

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Create Ticket with the Lighthouse API

Creates a ticket. See docs here

 
Try it

Overview of Lighthouse

Lighthouse is a great tool for building web applications. With its easy-to-use
API, you can quickly and easily create web applications that are both powerful
and user friendly.

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

  • A web application that allows users to search for and book travel
  • An online marketplace for buying and selling goods and services
  • A social networking site for connecting with friends and family
  • A news and information website
  • A blog or personal website

Connect Lighthouse

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: {
    lighthouse: {
      type: "app",
      app: "lighthouse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.lighthouse.$auth.domain}.lighthouseapp.com/profile.json`,
      headers: {
        "X-LighthouseToken": `${this.lighthouse.$auth.api_token}`,
        "Content-type": `application/json`,
      },
    })
  },
})

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