Shipengine

Shipping API & multi carrier shipping system

Integrate the Shipengine API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Shipping Label Created from Shipengine API
Shipengine + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Tracking Event (Instant) from Shipengine API
Shipengine + Telegram Bot
 
Try it
Delete a Message with Telegram Bot API on New Shipping Label Created from Shipengine API
Shipengine + Telegram Bot
 
Try it
Delete a Message with Telegram Bot API on New Tracking Event (Instant) from Shipengine API
Shipengine + Telegram Bot
 
Try it
Edit a Media Message with Telegram Bot API on New Shipping Label Created from Shipengine API
Shipengine + Telegram Bot
 
Try it
New Shipping Label Created from the Shipengine API

Emit new event when a new label is shipped. See the docs.

 
Try it
New Tracking Event (Instant) from the Shipengine API

Emit new event when a new event is tracked. See the docs.

 
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
Find Tracking Status with the Shipengine API

Retrieves package tracking information. See the docs.

 
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
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
Search Labels with the Shipengine API

By default, all labels are returned, 25 at a time, starting with the most recently created ones. You can combine multiple filter options to narrow-down the results. See the docs.

 
Try it

Overview of Shipengine

Using ShipEngine's API, you can build software applications that enable
seamless and powerful e-commerce shipping experiences for customers,
businesses, and marketplace integrations.

The ShipEngine API enables you to access the full range of shipping features,
from calculating rates and creating shipments to tracking packages and printing
labels. With the ShipEngine API, you can effortlessly bring top-tier shipping
capabilities to your business, marketplace, or website.

Some of the things you can build with ShipEngine's API include:

  • Instantly provide customers with accurate shipping rates, tailored to their
    region, package weight, and other factors
  • Create custom fulfillment process and manage orders throughout the order
    lifecycle
  • Automate the quoting, printing, and tracking of shipments
  • Offer discounted shipping rates on multiple carriers
  • Access detailed tracking information for packages, including estimated
    delivery date, current location in transit, and any delivery exceptions
  • Schedule pickups from carriers and print return labels
  • Integrate with multiple carriers such as UPS, FedEx, and USPS, with more
    being added all the time

Connect Shipengine

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    shipengine: {
      type: "app",
      app: "shipengine",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `https://api.shipengine.com/v1/addresses/validate`,
      headers: {
        "API-Key": `${this.shipengine.$auth.api_key}`,
        "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`,
    })
  },
})