Back to All

ACH Input CSV file format

we are switch to use Kotlinx Dataframe lib to generate the standard csv format for the ACH Input file, to replace our former manual text producing.

Last time I remembered there is an email from Tabapay that point out our commas in the value will cause the tabapay processing failed.

Now when we switched to use DataFrame, it will use the standard csv format to handling the value with commas and wrap them into a pair of "", is this working in Tabapay side.

For example:

Given csv cell value My Comp, Ltd , we treated them in former csv handling like this My Comp Ltd.

Now switching to use Dataframe, it becomes: "My Comp, Ltd" , is this working in the Tabapay server?