PayTrace

Find your payment gateway to happy. ​Simple payment solutions to save time and fuel growth.​

Integrate the PayTrace API with the Data Stores API

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

Batch Summary with the PayTrace API

This method can be used to export a summary of specific batch details or currently pending settlement details by card and transaction type. If no optional parameter is provided, the latest batch details will be returned. See docs here

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
List Batch Transactions with the PayTrace API

This method can be used to export settled transaction details within a specific batch. This method will return one or more transaction records. See docs here

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
List Batches by Date Range with the PayTrace API

This method can be used to export a set of batch summary details with a provided date range. This method will return one or more batch summary records. See docs here

 
Try it

Overview of PayTrace

Introduction to PayTrace API

PayTrace is an API designed to help small and mid-sized businesses process
credit card payments securely and efficiently. PayTrace offers a variety of
services in order to help businesses process payments with ease, such as online
payment processing and recurring billing.

With the PayTrace API, users can easily link their applications to the PayTrace
service and make use of the payment processing and security features. Now,
let’s take a look at some of the things businesses can build with the API.

Examples of Things to Build

  • Point of Sale Solutions - Create a fully integrated point of sale system that
    will allow customers to make payments quickly and securely.
  • Secure eCommerce websites - Build a secure and reliable way for customers to
    purchase products from an online store.
  • Invoice Automation Systems - Create an automated system for generating,
    sending, and managing invoices for businesses.
  • Payment Gateways - Create payment gateway solutions for businesses to
    securely process payments on their websites.
  • Recurring Payments - Allow businesses to easily setup and manage recurring
    payments for their customers.
  • Security Features - Implement various security features to keep customer’s
    information safe and secure.
  • Reporting Tools - Create tools to analyze and generate reports of payment
    information for businesses.
  • Mobile Payment Solutions - Create mobile payment solutions for businesses to
    accept payments on the go.

Connect PayTrace

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    paytrace: {
      type: "app",
      app: "paytrace",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.paytrace.com/`,
      headers: {
        Authorization: `Bearer ${this.paytrace.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})