improved
v1.2.0
22 days ago
This update ensures enhanced support for institution-specific account IDs and provides additional metadata in transaction responses for improved client-side functionality. No breaking changes were introduced in this release, ensuring backward compatibility with clients using version 1.1.0.
Added
- New Optional Query Parameters:
- Added an id_type query parameter to the following endpoints:
GET /digital-banking/v1/accounts/{account_id}
GET /digital-banking/v1/accounts/{account_id}/allocation
GET /digital-banking/v1/accounts/{account_id}/transactions
id_type
allows clients to specify the type of account ID (e.g.,institution
) or leave it asNone
.
- Schema Additions:
- Introduced a new schema:
IdType
, which defines acceptable values for theid_type
parameter.
- Enhancement in Transaction Response:
- Added a new field,
posted_at
, to theTransactionResponse
schema. This optional field records the timestamp when a transaction is posted.
- Enhanced Flexibility in Path Parameters:
- Updated path parameter
account_id
in several endpoints to accept bothuuid
andstring
formats:GET /digital-banking/v1/accounts/{account_id}
GET /digital-banking/v1/accounts/{account_id}/allocation
GET /digital-banking/v1/accounts/{account_id}/transactions