v1

latestOpenAPI 3.0.02026-07-2640301.0 MB
ACH Endpoints

ach/withdraw/transaction

This endpoint is used to look up details on a single ACH withdraw transaction. Withdraw transactions debit funds from your account and deposit them into the customer's bank account.

get/ach/withdraw/transaction

Query parameters

AccountIDstring required

Your account ID

Keystring required

API key for the account

Signaturestring required

Hashed signature for the request

TransactionIDinteger required

Unique ID of the withdraw transaction

Response

Successboolean required

True if the request was successful, false if it failed

ErrorMessagestring required

Contains a description of the error if the request failed

TransactionIDinteger required

The unique ID of the transaction

TransactionStatusstring required

A message indicating the current transaction status. Statuses are: pending, in progress, successful, failed, cancelled

TransactionDateTimestring date-time required

The timestamp when the transaction was created

Amountnumber required

The dollar amount of the withdraw transaction. This is the amount to be deposited into the recipient's bank account.

Currencystring required

The currency for the transaction.

HoldAmountnumber required

Will always be 0 for withdraw transactions, however parameter is included to keep return data format consistent with the format used for fund transactions.

LastModifiedstring date-time required

This timestamp indicates when the transaction record was last modified. In normal circumstances withdraw transaction record will not be modified.

CompanyName*string required

Company's name

FirstName*string required

Recipient's first name

LastNamestring required

Recipient's last name

PhoneNumberinteger required

Recipient's phone number

Address1string required

Recipient's address line 1

Address2string required

Recipient's address line 2

Citystring required

Recipient's city

Province/Statestring required

Recipient's province or state specified using two character abbreviation (eg. BC, AB)

Countrystring required

Recipient's country specified using full country name.

PostalCode/ZipCodestring required

Recipient's postal or zip code.

AccountNumberstring required

Recipient's bank account number that funds were deposited to.

ABARoutingNumberstring required

Routing number for the customer's account.

ClientReferenceNumberstring required

An optional reference number which was associated with the transaction.

GLCodestring required

General ledger code.

TransactionTypeCodestring required

CPA transaction code.

Example response

{
  "Success": true,
  "TransactionStatus": "pending",
  "TransactionDateTime": "2019-11-01 12:00:00",
  "Currency": "USD",
  "LastModified": "2019-11-03 01:00:00",
  "CompanyName*": "VoPay",
  "FirstName*": "John",
  "LastName": "Doe",
  "Address1": "112 Bentall Street",
  "City": "Los Angeles",
  "Province/State": "CA",
  "Country": "USA",
  "PostalCode/ZipCode": "90210",
  "AccountNumber": "227654387",
  "ABARoutingNumber": "129320349",
  "GLCode": "4300",
  "TransactionTypeCode": "999"
}