File tree Expand file tree Collapse file tree 2 files changed +47
-35
lines changed Expand file tree Collapse file tree 2 files changed +47
-35
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,52 @@ action:
80
80
code : <string>
81
81
` ` `
82
82
83
+ ## Examples
84
+
85
+ ### Return Debits between two values
86
+
87
+ ` ` `
88
+ - match :
89
+ debit : {} # remove if you want to return Credits and Debits
90
+ amount :
91
+ min : 100000 # $1,000
92
+ min : 120000 # $1,200
93
+ action :
94
+ return :
95
+ code : " R01"
96
+ ` ` `
97
+
98
+ ### Return a specific TraceNumber
99
+
100
+ ` ` `
101
+ - match :
102
+ # This matches ./examples/ppd-debit.ach
103
+ traceNumber : " 121042880000001"
104
+ action :
105
+ return :
106
+ code : " R03"
107
+ ` ` `
108
+
109
+ ### Correct an account number
110
+ ` ` `
111
+ - match :
112
+ # This matches ./examples/utility-bill.ach
113
+ accountNumber : " 744-5678-99"
114
+ action :
115
+ correction :
116
+ code : " C01"
117
+ data : " 744567899"
118
+ ` ` `
119
+
120
+ ### Copy all entries for a routing number
121
+ ` ` `
122
+ - match :
123
+ routingNumber : " 111222337"
124
+ action :
125
+ copy :
126
+ path : " /reconciliation/"
127
+ ` ` `
128
+
83
129
## Getting Help
84
130
85
131
channel | info
Original file line number Diff line number Diff line change @@ -18,38 +18,4 @@ ACHTestHarness:
18
18
Address : " :3333"
19
19
Matching :
20
20
Debug : false
21
- Responses :
22
- - match :
23
- # This matches ./examples/ppd-debit.ach
24
- accountNumber : " 12345678"
25
- traceNumber : " 121042880000001"
26
- action :
27
- return :
28
- code : " R03"
29
- - match :
30
- debit : {}
31
- amount :
32
- min : 100000 # $1,000
33
- min : 120000 # $1,200
34
- action :
35
- return :
36
- code : " R01"
37
- - match :
38
- accountNumber : " 987654321"
39
- amount :
40
- value : 45121 # $451.21
41
- action :
42
- return :
43
- code : " R01"
44
- - match :
45
- # This matches ./examples/utility-bill.ach
46
- accountNumber : " 744-5678-99"
47
- action :
48
- correction :
49
- code : " C01"
50
- data : " 744567899"
51
- - match :
52
- routingNumber : " 111222337"
53
- action :
54
- copy :
55
- path : " /reconciliation/"
21
+ Responses : []
You can’t perform that action at this time.
0 commit comments