From 6ba477e29d3e2d614cd4d24a95cc6f347ae4c501 Mon Sep 17 00:00:00 2001 From: Sven Biellmann Date: Fri, 12 Jan 2024 11:09:29 +0100 Subject: [PATCH] AIS - Adjustment in the description of the usage for /balance and /transactions --- accountAPI.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/accountAPI.yaml b/accountAPI.yaml index 52bd5e6..ef486b8 100644 --- a/accountAPI.yaml +++ b/accountAPI.yaml @@ -122,9 +122,8 @@ paths: summary: Retrieve account balance information description: | Returns account balance information of the specified account. - * Returns the intraday booked balance (ITBD), if called without a date. - * Returns the closing booked balance (CLBD), if called for a past date. In case the - specified day has not yet been finalized, the response will be a 404 error. + * Returns the intraday booked balance (ITBD) for the current day, if called without a date. + * Returns the closing booked balance (CLBD) for a specific day, if called for a past date (i.e. the closing booked balance (CLBD) of that day). In case the specified day has not yet been finalized, the response code will be 202. parameters: - $ref: '#/components/parameters/authorization_in_header' - $ref: '#/components/parameters/path_accountId' @@ -172,10 +171,9 @@ paths: - accounts summary: Retrieve transactions of a specific account description: | - Returns the transaction list (account postings with status booked only) of the specified account + Returns the transaction list of the specified account. Only postings with status booked will be returned. * Returns the transaction list of the current day, if called without a date. - * Returns the transaction list for a specific day, if called for a past date. - In case the specified day has not yet been finalized, the response will be a 404 error. + * Returns the transaction list for a specific day, if called for a past date (i.e. all transactions from that day). In case the specified day is not yet finalized, the response code will be 202. parameters: - $ref: '#/components/parameters/authorization_in_header' - $ref: '#/components/parameters/path_accountId'