The configuration options for the class.
Fetches an ACH transaction by its ID.
The ID of the transaction to fetch.
Fetches a transaction by its ID.
The ID of the transaction.
A promise that resolves to the transaction result.
import { QorDirectSDK } from "qor-direct-sdk"
const client = new QorDirectSDK({
apiKey: 'YOUR_API_KEY',
clientKey: 'YOUR_CLIENT_KEY',
});
client.transactions.fetchPaymentTransactionById("326881109961722").then((a) => console.log(a))
Queries the list of ACH transactions with optional query parameters.
Optional
queryParams: AchTransactionQueryParamsOptional query parameters to filter the list of transactions.
Retrieves a list of transactions. The maximum number of transactions returned per API call is 250. If you require more than 250 use the 'limit' and 'offset' parameters
Optional
queryParams: PaymentTransactionQueryParamsA promise that resolves to an array of transaction objects.
Retrieves a list of payment transactions by batch ID.
The ID of the batch to retrieve payment transactions for.
Retrieves a list of payment transactions by profile ID.
The ID of the profile.
A promise that resolves to the payment transaction list response.
Protected
requestSends a request to the specified endpoint with optional query parameters and options.
The endpoint to send the request to.
Optional
queryParams: Record<string, any>Optional query parameters for the request.
Optional
options: RequestInitOptional additional options for the request.
A promise that resolves to the response data.
Generated using TypeDoc
Constructor function for the Config class.