Changelog - Aug 26

Changelog - Aug 26

New Features

Support for Quickbooks classes

You can now set a default Quickbooks class to all payouts and payout links in the Dashboard settings or set a class on a per payout or payout link basis. This can be done both on the dashboard or through the API like this:

curl --request POST \
  --url https://api.dots.dev/api/v2/payout-links \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "payee": {
    "first_name": "John",
    "last_name": "Doe"
  },
  "amount": 10000,
  "delivery": {
    "method": "link"
  },
  "accounting_data": {
    "quickbooks_account_id": <QB ACCOUNT ID>,
    "quickbooks_class_id": <QB CLASS ID>
  }
}'

You can find more information in the Dots Docs for payouts and payout links.

User IP Address Tracking

To improve fraud protection and security, you can now optionally pass in the end user's IP Address to Dots by adding in the Dots-User-IP header to all user related requests like create-user and create-transfer. Dots will log all IP addresses related to a user and flag the user based on fraudulent behavior. Read more about IP Address tracking here.

Fixes and Improvements

  • CSV Exports and now named with App name and Datetime
  • ACH Refill and Withdrawal descriptor has been changed to DTS REFILL and DTS WTHDRW
  • Adding a UBO in the compliance flow has been greatly improved
  • RTP Enabled has been changed to RTP Eligible on the Dots Dashboard