ACH Transactions

Endpoint: BASE_URL/bass/customer-ach-accounts

You can filter transactions by date, since it is the only Galileo filter.

If no date range is sent, the current date is taken as endDate, and the startDate will be 90 days before the current date.

The date format must be: YYYY-MM-DD.

Linker example response:

{
    "statusCode": 200,
    "data": {
        "totalCount": 1,
        "count": 1,
        "limit": 1,
        "offset": 0,
        "transactions": [
            {
                "id": "6",
                "amount": "9.99",
                "description": "Money Transfer from web",
                "createdAt": "2022-10-06 00:00:00",
                "currencyCode": "USD",
                "type": "Credit",
                "status": "Queued for transfer / validation is successful",
                "direction": "credit"
            },
        ]
    }
}

Last updated