Skip to content

Commit

Permalink
docfix/Fix mocked data indicator in case of BG endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
constantine2nd committed Jul 17, 2023
1 parent c6a654d commit af8e8cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ The account-id is constant at least throughout the lifecycle of a given consent.
"GET",
"/card-accounts",
"Reads a list of card accounts",
s"""${mockedDataText(true)}
s"""${mockedDataText(false)}
Reads a list of card accounts with additional information, e.g. balance information.
It is assumed that a consent of the PSU to this access is already given and stored on the ASPSP system.
The addressed list of card accounts depends then on the PSU ID and the stored consent addressed by consentId,
Expand Down Expand Up @@ -761,7 +761,7 @@ This method returns the SCA status of a consent initiation's authorisation sub-r
"GET",
"/accounts/ACCOUNT_ID/transactions/TRANSACTIONID",
"Read Transaction Details",
s"""${mockedDataText(true)}
s"""${mockedDataText(false)}
Reads transaction details from a given transaction addressed by "transactionId" on a given account addressed
by "account-id". This call is only available on transactions as reported in a JSON format.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ object APIMethods_PaymentInitiationServicePISApi extends RestHelper {
"DELETE",
"/PAYMENT_SERVICE/PAYMENT_PRODUCT/PAYMENTID",
"Payment Cancellation Request",
s"""${mockedDataText(true)}
s"""${mockedDataText(false)}
This method initiates the cancellation of a payment. Depending on the payment-service, the payment-product
and the ASPSP's implementation, this TPP call might be sufficient to cancel a payment. If an authorisation
of the payment cancellation is mandated by the ASPSP, a corresponding hyperlink will be contained in the
Expand Down

0 comments on commit af8e8cc

Please sign in to comment.