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 Schedule API

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

Get Verification Result with FraudLabs Pro API on Daily schedule from Schedule API
Schedule + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on Monthly schedule from Schedule API
Schedule + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on Schedule based on a custom interval from Schedule API
Schedule + FraudLabs Pro
 
Try it
Get Verification Result with FraudLabs Pro API on Weekly schedule from Schedule API
Schedule + FraudLabs Pro
 
Try it
Send SMS Verification with FraudLabs Pro API on Daily schedule from Schedule API
Schedule + FraudLabs Pro
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

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

Overview of FraudLabs Pro

The FraudLabs Pro API offers a robust suite of fraud prevention tools that empower users to screen online transactions for fraud. It leverages advanced scoring analytics to rate the risk level of a transaction based on various verification checks, such as IP address, email, transaction velocity, and more. Using Pipedream, developers can integrate these capabilities into workflows to automate fraud checks, augment data analysis, and trigger actions based on fraud scores.

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 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.