PayTrace

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

Go to site
Explore
/
Apps
/
PayTrace

PayTrace API Integrations

Build and run workflows using the PayTrace API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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.
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}`,
      },
    })
  },
})
Batch Summary with PayTrace API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + PayTrace
 
Try it
Batch Summary with PayTrace API on New Message from Discord API
Discord + PayTrace
 
Try it
Batch Summary with PayTrace API on New Message in Channel from Discord Bot API
Discord Bot + PayTrace
 
Try it
Batch Summary with PayTrace API on New Submission from Typeform API
Typeform + PayTrace
 
Try it
Batch Summary with PayTrace API on Custom Events from Zoom API
Zoom + PayTrace
 
Try it
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
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
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
List Transactions with the PayTrace API

This method can be used to export a set of credit card transaction details with a provided date range. You can optimize your search by providing optional parameters. See docs here

 
Try it

Authentication

PayTrace uses OAuth authentication. When you connect your PayTrace account, Pipedream will open a popup window where you can sign into PayTrace and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any PayTrace API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. accessToken
    POSThttps://api.paytrace.com/oauth/token?grant_type=password&username={{custom_fields.paytrace_username}}&password={{custom_fields.paytrace_password}}content-type: application/x-www-form-urlencodedaccept: application/json
  2. refreshToken
    POSThttps://api.paytrace.com/oauth/token?grant_type=password&username={{custom_fields.paytrace_username}}&password={{custom_fields.paytrace_password}}content-type: application/x-www-form-urlencodedaccept: application/json