Introducing Modern Treasury Payments. Built to move money across fiat and stablecoins. Learn more →

Journal
September 4, 2019

Counterparty Feature Updates

We've released two new features to help you manage your counterparty relationships in Modern Treasury.

Image of Matt Marcus
Matt Marcus / Co-Founder and CEO

We've released two new features to help you manage your counterparty relationships in Modern Treasury.

Counterparty Remittance Notifications

Your counterparties may want to be notified when they are being paid and their money is on the way. Normally, this is an additional feature you'd have to build to email them.

Now, Modern Treasury can email the counterparty on your behalf once the payment to them is processed by the bank. They'll receive this email prior to the funds arriving in their bank account. The email will include relevant payment information like the amount, the bank statement description, and remittance details. This feature can be used for any payment type: ACH, wire, check, or RTP.

Sample remittance email.

In order to use this feature, the counterparty must have its send_remittance_advice attribute set to true. This can be done while creating the counterparty, or as an update operation to an existing counterparty.

Creating a counterparty with the remittance flag:

curl --request POST \
 -u ORGANIZATION_ID:API_KEY \
 --url https://app.moderntreasury.com/api/counterparties \
 -H 'Content-Type: application/json' \
 -d '{
   "name": "John Doe",
   "send_remittance_advice": "true"
 }'

Updating a counterparty to include the remittance flag:

curl --request PATCH \
 -u ORGANIZATION_ID:API_KEY \
 --url https://app.moderntreasury.com/api/counterparties/928db55e-6552-4aaf-96d7-10c693922b1f \
 -H 'Content-Type: application/json' \
 -d '{
   "send_remittance_advice": "true"
 }'

Deleting Counterparties

You can now delete a counterparty that you no longer plan to interact with. This can be especially helpful during development, as you're creating entities that you later plan to delete. When a counterparty is deleted, any associated external_accounts will also be deleted.

curl --request DELETE \
 -u ORGANIZATION_ID:API_KEY \
 --url https://app.moderntreasury.com/api/counterparties/928db55e-6552-4aaf-96d7-10c693922b1f \

Note that this operation is a soft delete. We call it archiving inside of our application. The records will still be accessible through Modern Treasury in case they are needed later, such as for an audit.

Archived counterparties can be viewed by checking this checkbox.
Subscribe to our newsletter

Get the latest articles, guides, and insights delivered to your inbox.

Authors

Image of Matt Marcus
Matt MarcusCo-Founder and CEO

Matt is co-founder and CEO of Modern Treasury. Previously, Matt worked at First Round Capital and Ultimate Kronos Group. Matt graduated with a BS in Computer Science from Dartmouth College, where he was captain of the men’s lightweight rowing team. Matt is an avid hiker and is known to celebrate company milestones with SusieCakes deliveries.