Common Variables and their options
The API reference page outlines the common variables used across multiple endpoints. Each variable is clearly defined to aid the users in understanding their usage. For variables that have more than one option, such as 'direction', 'secCode', 'service', 'status', and 'transactionTypes', all possible choices are thoroughly listed. This structure ensures that users have a comprehensive understanding and can accurately utilize the API to their maximum advantage.
Welcome to our comprehensive guide, providing clarity and in-depth understanding of critical parameters in our service. This documentation currently focuses on two main areas:
-
- Key variables:
counterpartyId
,type
,businessName
,firstName
,lastName
,email
,phone
- Detailed definitions:
Counterparty Types
,Bank Account Types
,Account Types
,Email and Phone Format
- Key variables:
-
- General variables:
accountNumber
,addenda
,amount
,beginDate
,counterpartyId
,description
,direction
,endDate
,externalId
,inbound
,linkedPaymentId
,paymentId
,productId
,searchKeyWords
,secCode
,service
,status
,transactionTypes
,updatedEnd
,updatedStart
,userDetails
- Detailed definitions:
SecCodes
,Decline Options
,Transaction Types
,Status Options
- General variables:
With these key insights, you'll be well-prepared to navigate smoothly and successfully within our system. Consider this guide your first point of reference for understanding and correctly utilizing the specific variables and definitions related to counterparties and transactions. More categories will be added to this documentation as we expand our service and introduce new endpoints.
Counterparty
General Variables
For counterparty, these variables are shared across multiple endpoints:
counterpartyId
: A unique identifier for the counterparty.type
: Denotes the type of the counterparty, eitherBUSINESS
orINDIVIDUAL
.businessName
: The name of the business. Required whentype
isBUSINESS
.firstName
andlastName
: The first name and last name of the individual. Required whentype
isINDIVIDUAL
.email
: Email address of the counterparty. Optional.phone
: Phone number of the counterparty. Optional.
Detailed Definitions
Counterparty Types
The type
variable can hold one of the following:
BUSINESS
: This denotes that the counterparty is a business entity.INDIVIDUAL
: This indicates that the counterparty is an individual person.
Bank Account Types
The bankAccountType
variable can hold one of the following:
SAVINGS
: This indicates a saving bank account.CHECKING
: This denotes a checking bank account.
Account Types
The accountType
variable can take on one of the following:
BUSINESS_CHECKING
: This indicates that the account is a checking account held by a business.BUSINESS_SAVING
: This denotes that the account is a savings account held by a business.INDIVIDUAL_CHECKING
: This represents a checking account held by an individual.INDIVIDUAL_SAVING
: This indicates that the account is a savings account held by an individual.
Email and Phone Format
- Email - The
email
field when provided, should follow standard email format, e.g.,[email protected]
. - Phone - The
phone
field, if included, should adhere to the international format, which includes the country code followed by the number, for example,+11234567890
. Any number not conforming to this format might result in errors or unsuccessful responses while interfacing with this endpoint.
Transactions
General Variables:
These variables are common to both endpoints:
-
accountNumber: A string that represents the account number in numeral format.
-
addenda: Additional string data related to the transaction.
-
amount: The amount to be transacted; must be greater than 0 and can use decimal points with xx.xx as the required format.
-
beginDate: The starting date of the period for which transactions are sought.
-
counterpartyId: The ID of the counterparty involved in the transaction in numeral format.
-
description: A string description of the transaction.
-
direction: Indicates whether the transaction is a credit or debit. Only options are CREDIT or DEBIT.
-
endDate: The ending date of the period for which transactions are sought.
-
externalId: An external string ID that can be passed in to identify the transaction.
-
inbound: Indicates whether the ACH transaction is inbound (true) or outbound (false).
-
linkedPaymentId: The ID of the linked payment. E.g. a returned ACH transaction is linked to the origin transaction. A fee transaction is linked to the transaction that triggered the fee.
-
paymentId: The ID of the payment.
-
productId: The ID associated with the product.
-
searchKeyWords: The keywords to be used to filter the list, based on ProductID, businessID, individualID or counterpartyID.
-
secCode: The Standard Entry Class (SEC) code for ACH transactions.
-
service: The options for service level of the transaction are STANDARD and SAME_DAY.
-
status: The status of the transaction. Options include: MANUAL_REVIEW, CONTESTED, DISHONERED, ERROR, CANCELED, INITIATED, RETURNED, SENT, SUBMITTED.
-
transactionTypes: The type of the transactions.
-
updatedEnd: The end date/time for the search in ISO 8601 format (e.g., “2022-09-30T19:35:01.058Z”).
-
updatedStart: The start date/time for the search in ISO 8601 format (e.g., “2022-09-01T19:35:01.058Z”).
-
userDetails: Details of the user for which the counterparty list needs to be fetched. It should be in the JSON format.
Detailed Definitions:
SecCodes
SecCode represents the Standard Entry Class code for ACH transactions. Here are all the SecCodes:
- 'TEL': Telephone-Initiated Entry
- 'CCD': Corporate Credit or Debit
- 'CIE': Customer Initiated Entries
- 'PPD': Prearranged Payment and Deposit Entry
- 'WEB': Internet-Initiated/Mobile Entries
Decline Options
In the event of a transaction being declined, the following codes can be returned:
- ACCOUNT_NOT_FOUND: No Account Found
- CUSTOMER_NOT_FOUND: No Customer Found
- CUSTOMER_NOT_UNIQUE: Unique Customer Not Found
- PRODUCT_NOT_FOUND: Product Not Found
- REJECTED_CUSTOMER_STATE: This is part of the DataValidationException.class or EntityNotFoundException.class
Transaction Types
The variable transactionTypes represents the type of the transactions. Here are all the possible transactionTypes:
-
ACH_DEPOSIT_STABLE
-
ACH_TRANSFER
-
WIRE_TRANSFER
-
CHECK
-
DEBIT_CARD
-
CREDIT_CARD
-
PAYPAL
-
VENMO
-
CASH_APP
-
ZELLE
-
CRYPTOCURRENCY
Status Options
The variable status represents the status of the transaction. Here are all the possible status:
-
MANUAL_REVIEW: The transaction is under manual review.
-
CONTESTED: The transaction has been contested by one of the parties.
-
DISHONERED: The transaction has been dishonored.
-
ERROR: There was an error processing the transaction.
-
CANCELED: The transaction has been canceled.
-
INITIATED: The transaction initiation process has begun.
-
RETURNED: The transaction was returned.
-
SENT: The transaction was sent successfully.
-
SUBMITTED: The transaction has been submitted for processing.
-
IN_PROGRESS: The transaction is currently being processed.
-
COMPLETED: The transaction was successfully completed.
-
FAILED: The transaction failed due to one or more reasons.
-
PENDING: The transaction is still pending approval or completion.
-
REVERSED: The transaction was reversed/canceled after being initiated.
-
DECLINED: The transaction was declined by the receiving party or the financial institution.
Updated 2 months ago