Learn how to customize statement descriptors on card payments.
Statement descriptors are the text that describe transactions presented to us by our digital banking feeds (or paper statements) so that we can recognize them. Setting clear statement descriptors can help to reduce disputes and improve the user experience by providing context on what the payment was for.
For card payments, Moov will use the statement descriptor added at the transfer or account level. Otherwise, Moov will default to the DBA or legal business name of the Moov account truncated based on payment network limits.
You can set the default statement descriptor for a merchant by using the account.settings.cardPayment.statementDescriptorfield in the PATCHaccounts endpoint. In the example provided, we set a statement descriptor for a local gym called “Whole Body Fitness” at the accoutn level.
constmoov=newMoov(credentialsObject);constaccount=awaitmoov.accounts.patch({"settings":{"cardPayment":{"statementDescriptor":"Whole Body Fitness",}}})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
constmoov=Moov(token);constupdatedAccount={"accountType":"business","profile":{"business":{"legalBusinessName":"ClassBooker","businessType":"llc","settings":{"cardPayment":{"statementDescriptor":"Whole Body Fitness",}}}}};moov.accounts.update(updatedAccount);
Optionally, source.cardDetails.dynamicDescriptor in the CREATEtransfer endpoint allows a merchant to pass information to the card issuer at the time of transaction. The card issuer will then use this information to generate a description of the cardholder’s statement. In the example provided, we set a dynamic statement descriptor that captures the date of a yoga class at Whole Body Fitness.