Miestro

The ultimate course platform to help you easily your own online courses in just 5 steps.

Integrate the Miestro API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Webhook Event Received from Miestro API
Miestro + Telegram Bot
 
Try it
Create User with Miestro API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + Miestro
 
Try it
Create User with Miestro API on New Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Miestro
 
Try it
Create User with Miestro API on New Message Updates (Instant) from Telegram Bot API
Telegram Bot + Miestro
 
Try it
Create User with Miestro API on New Updates (Instant) from Telegram Bot API
Telegram Bot + Miestro
 
Try it
New Webhook Event Received from the Miestro API

Emit new event when a new webhook event is received. Needs webhook registration in Miestro UI using the http endpoint of this source. See the documentation

 
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
New Message Updates (Instant) from the Telegram Bot API

Emit new event each time a Telegram message is created or updated.

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

Emit new event for each new Telegram event.

 
Try it
Create User with the Miestro API

Creates a user with the given attributes. See the documentation

 
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
Enroll User To Course with the Miestro API

Enrolls user to a course. See the documentation

 
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 Miestro

The Miestro API can be used to create a variety of applications, including:

  • Location-based applications
  • Messaging applications
  • Social networking applications
  • Gaming applications
  • Augmented reality applications
  • And more!

Connect Miestro

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: {
    miestro: {
      type: "app",
      app: "miestro",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.miestro.com/api/v1.0/users`,
      headers: {
        "X-Forward-Api-Key": `${this.miestro.$auth.api_key}`,
        "X-Forward-Api-Secret": `${this.miestro.$auth.api_secret}`,
      },
    })
  },
})

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