Ryan Wiebe
Ryan Wiebe

Reputation: 9

Get user's current external transfer limits

Ultimately I am trying to set limits for external transfers on specific users accounts, but before I set the limits of external transfers, I need to check their current limits to make sure they are not being lowered by my change.

I am not seeing any options to retrieve this data, has anyone been able to retrieve a users external transfer limits?

Upvotes: 0

Views: 93

Answers (1)

Ben Reavis
Ben Reavis

Reputation: 26

You can utilize the Consumer API address to find the user's abilities. You must now the Banno ID code for the specific user and your institution ID. The endpoint is in the following format: {{consumerUrl}}/users/:userId/institutions/:institutionId. The information is in root/externalTransferSettings in the REST response:

"externalTransferSettings": { "inboundFee": "0.00", "outboundFee": "0.00", "currentDailyInboundTotal": "0.00", "currentDailyOutboundTotal": "0.00", "currentDailyInboundQuantity": 0, "currentDailyOutboundQuantity": 0, "cutOffTime": "1970-01-01T00:00:00.000Z", "additionalMessage": "Transfers may be subjected to a hold for up to seven business days. ", "inboundHighRiskThreshold": null, "outboundHighRiskThreshold": null, "dailyInboundLimit": "2500.00", "dailyOutboundLimit": "2500.00", "dailyInboundQuantitativeLimit": 10, "dailyOutboundQuantitativeLimit": 10 },

Upvotes: 1

Related Questions