6.1. Account Amount Coverage Check
6.1.1. Request
POST http://localhost:8080/v1/funds-confirmations
6.1.1.1. No specific Header
6.1.1.2. Body
{
"paymentCoverageRequestId": "MyCoverage123456",
"instructedAmount": {
"currency": "EUR",
"amount": "12345"
},
"accountId": {
"iban": "YY13RDHN98392489481620896668799742"
}
}6.1.2. Response
Status code: 200
6.1.2.1. No specific Header
6.1.2.2. Body
Note: this body was extracted from a PDF that lost some structural separators (braces / commas). Refer to the source PDF for the canonical JSON.
{ "request" : { "paymentCoverageRequestId" : "MyCoverage123456", "instructedAmount" : { "currency" : "EUR", "amount" : "12345" }, "accountId" : { "iban" : "YY13RDHN98392489481620896668799742" } }, "result" : true, "_links" : {
"href" : "v1/funds-confirmations"
}