Package 'moov-io/ach' implements a file reader and writer for parsing ACH Automated Clearing House files. ACH is the primary method of electronic money movement throughout the United States.
ACH is at an early stage and under active development. Please star the project if you are interested in its progress.
- Library currently supports the reading and writing
- PPD (Prearranged payment and deposits)
- WEB (Internet-initiated Entries )
- CCD (Corporate credit or debit)
- Additional SEC codes will be added based on library users needs. Please open an issue with a valid test file.
- Review the project issues for more detailed information
Examples exist in projects example folder. The following is based on simple file creation
To create a file
file := ach.NewFile(ach.FileParam{
ImmediateDestination: "0210000890",
ImmediateOrigin: "123456789",
ImmediateDestinationName: "Your Bank",
ImmediateOriginName: "Your Company",
ReferenceCode: "#00000A1"})
To create a batch
Errors only if payment type is not supported
batch := ach.NewBatch(ach.BatchParam{
ServiceClassCode: "220",
CompanyName: "Your Company",
StandardEntryClass: "PPD",
CompanyIdentification: "123456789",
CompanyEntryDescription: "Trans. Description",
CompanyDescriptiveDate: "Oct 23",
ODFIIdentification: "123456789"})
To create an entry
entry := ach.NewEntryDetail(ach.EntryParam{
ReceivingDFI: "102001017",
RDFIAccount: "5343121",
Amount: "17500",
TransactionCode: "27",
IDNumber: "ABC##jvkdjfuiwn",
IndividualName: "Bob Smith",
DiscretionaryData: "B1"})
To add one or more optional addenda records for an entry
addenda := ach.NewAddenda(ach.AddendaParam{
PaymentRelatedInfo: "bonus pay for amazing work on #OSS"})
entry.AddAddenda(addenda)
Entries are added to batches like so:
batch.AddEntry(entry)
When all of the Entries are added to the batch we can create the batch.
if err := batch.Create(); err != nil {
fmt.Printf("%T: %s", err, err)
}
And batches are added to files much the same way:
file.AddBatch(batch)
Now add a new batch for accepting payments on the web
batch2, _ := ach.NewBatch(ach.BatchParam{
ServiceClassCode: "220",
CompanyName: "Your Company",
StandardEntryClass: "WEB",
CompanyIdentification: "123456789",
CompanyEntryDescription: "subscr",
CompanyDescriptiveDate: "Oct 23",
ODFIIdentification: "123456789"})
Add an entry and define if it is a single or reoccurring payment. The following is a reoccurring payment for $7.99
entry2 := ach.NewEntryDetail(ach.EntryParam{
ReceivingDFI: "102001017",
RDFIAccount: "5343121",
Amount: "799",
TransactionCode: "22",
IDNumber: "#123456",
IndividualName: "Wade Arnold",
DiscretionaryData: "R"})
addenda2 := ach.NewAddenda(ach.AddendaParam{
PaymentRelatedInfo: "Monthly Membership Subscription"})
Add the entry to the batch
entry2.AddAddenda(addenda2)
Create and add the second batch
batch2.AddEntry(entry2)
if err := batch2.Create(); err != nil {
fmt.Printf("%T: %s", err, err)
}
file.AddBatch(batch2)
Once we added all our batches we must build the file
if err := file.Create(); err != nil {
fmt.Printf("%T: %s", err, err)
}
Finally we wnt to write the file to an io.Writer
w := ach.NewWriter(os.Stdout)
if err := w.Write(file); err != nil {
fmt.Printf("%T: %s", err, err)
}
w.Flush()
}
Which will generate a well formed ACH flat file.
101 210000890 1234567891708290000A094101Your Bank Your Company #00000A1
5200Your Company 123456789 PPDTrans. DesOct 23010101 1234567890000001
6271020010175343121 0000017500#456789 Bob Smith B11234567890000001
705bonus pay for amazing work on #OSS 00010000001
82000000020010200101000000017500000000000000123456789 234567890000001
5220Your Company 123456789 WEBsubscr Oct 23010101 1234567890000002
6221020010175343121 0000000799#123456 Wade Arnold R 1234567890000001
705Monthly Membership Subscription 00010000001
82200000020010200101000000000000000000000799123456789 234567890000002
9000002000001000000040020400202000000017500000000000799
We use GitHub to manage reviews of pull requests.
-
If you have a trivial fix or improvement, go ahead and create a pull request, addressing (with
@...
) one or more of the maintainers (see AUTHORS.md) in the description of the pull request. -
If you plan to do something more involved, first propose your ideas in a Github issue. This will avoid unnecessary work and surely give you and us a good deal of inspiration.
-
Relevant coding style guidelines are the Go Code Review Comments and the Formatting and style section of Peter Bourgon's Go: Best Practices for Production Environments.
SEC type's in the Batch Header record define the payment type of the following Entry Details and Addenda. The format of the records in the batch is the same between all payment types but NACHA defines different rules for the values that are held in each record field. To add support for an additional SEC type you will need to implement NACHA rules for that type. The vast majority of rules are implemented in ach.batch and then composed into Batch(SEC) for reuse. All Batch(SEC) types must be a ach.Batcher.
- Create a milestone for the new SEC type that you want supported.
- Add issues to that milestone to meet the NACHA rules for the batch type.
- Create a new struct of the batch type. In the following example we will use MTE(Machine Transfer Entry) as our example.
- The following code would be place in a new file batchMTE.go next to the existing batch types.
- The code is stub code and the MTE type is not implemented. For concrete examples review the existing batch types in the source.
Create a new struct and compose ach.batch
type BatchMTE struct {
batch
}
Add the ability for the new type to be created.
func NewBatchMTE(params ...BatchParam) *BatchMTE {
batch := new(BatchMTE)
batch.setControl(NewBatchControl)
if len(params) > 0 {
bh := NewBatchHeader(params[0])
bh.StandardEntryClassCode = "MTE"
batch.SetHeader(bh)
return batch
}
bh := NewBatchHeader()
bh.StandardEntryClassCode = "MTE"
batch.SetHeader(bh)
return batch
}
To support the Batcher interface you must add the following functions that are not implemented in ach.batch.
- Validate() error
- Create() error
Validate is designed to enforce the NACHA rules for the MTE payment type. Validate is run after a batch of this type is read from a file. If you are creating a batch from code call validate afterwards.
// Validate checks valid NACHA batch rules. Assumes properly parsed records.
func (batch *BatchMTE) Validate() error {
// basic verification of the batch before we validate specific rules.
if err := batch.verify(); err != nil {
return err
}
// Add configuration based validation for this type.
// ... batch.isAddendaCount(1)
// Add type specific validation.
// ...
return nil
}
Create takes the Batch Header and Entry details and creates the proper sequence number and batch control. If additional logic specific to the SEC type is required it building a batch file it should be added here.
// Create takes Batch Header and Entries and builds a valid batch
func (batch *BatchMTE) Create() error {
// generates sequence numbers and batch control
if err := batch.build(); err != nil {
return err
}
// Additional steps specific to batch type
// ...
if err := batch.Validate(); err != nil {
return err
}
return nil
}
Finally add the batch type to the NewBatch factory in batch.go.
//...
case "MTE":
return NewBatchMTE(bp), nil
//...
Pull request require a batchMTE_test.go file that covers the logic of the type.
- NACHA ACH File Formatting
- PNC ACH File Specification
- Thomson Reuters ACH FIle Structure
- Gusto: How ACH Works: A developer perspective
- ACH:Builder - Tools for Building ACH
- mosscode / ach
- Helper for building ACH files in Ruby
- Glenselle / nACH2
Apache License 2.0 See LICENSE for details.