Payments
Identifiers necessary to make ACH and RTP payments.
Full account number and bank routing number. Includes bankId
, identifier
, type
, and identifierType
.
Results for payments are returned in JSON in FDX format.
Endpoint: /payments
API documentation: https://docs.akoya.com/v2/reference/payment-networks
Example response
{
"paymentNetworks": [
{
"transferOut": true,
"identifier": "454992210071",
"bankId": "125000024",
"transferIn": true,
"identifierType": "ACCOUNT_NUMBER",
"type": "US_ACH"
}
]
}
Supported data elements
Name | Type | Description |
---|---|---|
bankId | string | Bank identifier used by the payment network ie. Routing Number |
identifier | string | The number used to identify the account within the payment network. If identifierType is ACCOUNT_NUMBER, this is the account number. |
identifierType | string | Type of identifier |
type | string | Type of payment network |
transferIn | boolean | Can transfer funds to the account using this information |
transferOut | boolean | Can transfer funds from the account using this information |
Updated over 1 year ago