FraudLabs Pro

FraudLabs Pro helps merchants to protect their online e-commerce stores from malicious fraudsters. It screens all sales orders transacted using credit cards, PayPal, and so on for online frauds (also known as payment frauds or CNP frauds).

Integrate the FraudLabs Pro API with the Telegram Bot API

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

Get Verification Result with FraudLabs Pro API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on New Updates (Instant) from Telegram Bot API
Telegram Bot + FraudLabs Pro
 
Try it
Send SMS Verification with FraudLabs Pro API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + FraudLabs Pro
 
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
Get Verification Result with the FraudLabs Pro API

Verify that an OTP sent by the Send SMS Verification API is valid. Please refer to the documentation for the explanation of the result returned.

 
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
Send SMS Verification with the FraudLabs Pro API

Send an SMS with verification code and a custom message for authentication purpose. Please refer to the documentation for the explanation of the result returned. NOTE: You need to register for an API key before using this REST API. Please visit Micro Plan to sign up for an API key if you do not have one. In addition, you will also have to make sure you have enough SMS credits to send any verification SMS.

 
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 FraudLabs Pro

Fraud Detection for E-commerce

The FraudLabs Pro API enables e-commerce businesses to detect fraudulent orders
with ease. Businesses can simply send in an order’s information, and FraudLabs
Pro will return a fraud score and report explaining the decision. This allows
businesses to make informed decisions on whether to accept, flag, or reject an
order.

FraudLabs Pro can help e-commerce businesses in the following ways:

  • Detect fraudulent orders
  • Reduce chargebacks and fraud-related losses
  • Prevent fraudsters from abusing the system

Here are some examples of what you can build with the FraudLabs Pro API:

  • A fraud detection system for your e-commerce website
  • A chargeback prevention system for your business
  • A fraud monitoring system to track fraudsters and their activities

Connect FraudLabs Pro

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: {
    fraudlabs_pro: {
      type: "app",
      app: "fraudlabs_pro",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.fraudlabspro.com/v1/order/screen`,
      params: {
        key: `${this.fraudlabs_pro.$auth.api_key}`,
        ip: `[ip_address]`,
      },
    })
  },
})

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