Hi, my account was recently enabled for Addenda support and it was integrated into our code. But, the Addenda record still doesn’t show up on people’s bank statements. Here is the code being used:
What am I missing here?
My main goal is to change the text that appears on people’s bank statements from our Business name to our App name. Any help is appreciated.
var transferRequest = {
_links: {
source: { href: fundingSourceLink },
destination: { href: DWOLLA_FUNDING_SOURCE }
},
amount: {
currency: "USD",
value: amount,
},
achDetails: {
source: {
addenda: { values: [`AppName - ${transactionId.substring(0,3)}`] }
},
destination: {
addenda: { values: [`AppName - ${transactionId.substring(0,3)}`] }
}
}
};
const initTransfer = await dwolla.post("transfers", transferRequest);