We are currently integrating Banno consumer/Admin API into our system to retrieve information about users and users' accounts. However, we've encountered some difficulties in obtaining the following pieces of information.
- Join Date: We require the date when an individual joined the financial institution (FI). Is there a specific property or endpoint that provides access to this information?
- Direct Deposit: We need to know whether users utilize direct deposit services or not. Is there a property or flag within the API response that indicates whether direct deposit services are being used by the account holder?
- Maturity Date: Some of the accounts have maturity dates associated with them. Could you please guide how to retrieve the maturity date information through the API?
I am sure there must be some way to obtain these as they are common requirements.
This can be accessed from the GET /a/mobile/api/v0/institutions/{institutionId}/users/{userId}/details endpoint. Specifically you are looking for the
userAddedattribute.There is not an endpoint that specifically indicates whether or not a user is utilizing direct deposit. You could piece together this information by inspecting transactions.
I believe if this is available it would be found within the GET /users/{userId}/accounts/{accountId} endpoint.