Find your payment gateway to happy. Simple payment solutions to save time and fuel growth.
Go to sitePayTrace 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.
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}`,
},
})
},
})
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
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
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
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
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:
POST
https://api.paytrace.com/oauth/token
?
grant_type=password
&
username={{custom_fields.paytrace_username}}
&
password={{custom_fields.paytrace_password}}
content-type: application/x-www-form-urlencoded
accept: application/json
POST
https://api.paytrace.com/oauth/token
?
grant_type=password
&
username={{custom_fields.paytrace_username}}
&
password={{custom_fields.paytrace_password}}
content-type: application/x-www-form-urlencoded
accept: application/json