├── .eslintrc.yml ├── .github └── workflows │ └── backup-s3.yml ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README-GENERATE.md ├── README.md ├── apis ├── v0 │ ├── .keep │ └── swagger │ │ ├── definitions │ │ ├── index.yaml │ │ └── mime_type.yaml │ │ ├── index.yaml │ │ ├── info │ │ └── index.yaml │ │ ├── parameters │ │ └── index.yaml │ │ ├── paths │ │ ├── accounts │ │ │ ├── account_get.yaml │ │ │ ├── accounts_balances_get.yaml │ │ │ ├── accounts_beneficiaries_get.yaml │ │ │ ├── accounts_direct_debits_get.yaml │ │ │ ├── accounts_get.yaml │ │ │ ├── accounts_product_get.yaml │ │ │ ├── accounts_standing_orders_get.yaml │ │ │ ├── accounts_transactions_get.yaml │ │ │ └── parameters.yaml │ │ ├── accounts_requests │ │ │ ├── account_request_other.yaml │ │ │ ├── accounts_request_post.yaml │ │ │ └── parameters.yaml │ │ ├── balances │ │ │ └── balances_get.yaml │ │ ├── beneficiaries │ │ │ └── beneficiaries_get.yaml │ │ ├── direct_debits │ │ │ └── direct_debits_get.yaml │ │ ├── index.yaml │ │ ├── products │ │ │ └── products_get.yaml │ │ ├── standing_orders │ │ │ └── standing_orders_get.yaml │ │ └── transactions │ │ │ └── transactions_get.yaml │ │ ├── responses │ │ └── index.yaml │ │ └── security │ │ ├── PSU_OAuth2security.yaml │ │ ├── TPP_OAuth2security.yaml │ │ └── index.yaml ├── v1.0 │ └── swagger │ │ ├── definitions │ │ ├── index.yaml │ │ └── mime_type.yaml │ │ ├── headers │ │ ├── auth.yaml │ │ ├── fapi.yaml │ │ └── jws.yaml │ │ ├── index.yaml │ │ ├── info │ │ └── index.yaml │ │ ├── parameters │ │ ├── date_filtering.yaml │ │ └── index.yaml │ │ ├── paths │ │ ├── accounts │ │ │ ├── account_get.yaml │ │ │ ├── accounts_balances_get.yaml │ │ │ ├── accounts_beneficiaries_get.yaml │ │ │ ├── accounts_direct_debits_get.yaml │ │ │ ├── accounts_get.yaml │ │ │ ├── accounts_product_get.yaml │ │ │ ├── accounts_standing_orders_get.yaml │ │ │ ├── accounts_transactions_get.yaml │ │ │ └── parameters.yaml │ │ ├── accounts_requests │ │ │ ├── account_request_other.yaml │ │ │ ├── accounts_request_post.yaml │ │ │ ├── body.yaml │ │ │ └── parameters.yaml │ │ ├── balances │ │ │ └── balances_get.yaml │ │ ├── beneficiaries │ │ │ └── beneficiaries_get.yaml │ │ ├── direct_debits │ │ │ └── direct_debits_get.yaml │ │ ├── index.yaml │ │ ├── products │ │ │ └── products_get.yaml │ │ ├── standing_orders │ │ │ └── standing_orders_get.yaml │ │ └── transactions │ │ │ └── transactions_get.yaml │ │ ├── responses │ │ └── index.yaml │ │ └── security │ │ ├── PSU_OAuth2security.yaml │ │ ├── TPP_OAuth2security.yaml │ │ └── index.yaml └── v1.1 │ └── swagger │ ├── definitions │ ├── index.yaml │ └── mime_type.yaml │ ├── headers │ ├── auth.yaml │ ├── fapi.yaml │ └── jws.yaml │ ├── index.yaml │ ├── info │ └── index.yaml │ ├── parameters │ ├── date_filtering.yaml │ └── index.yaml │ ├── paths │ ├── accounts │ │ ├── account_get.yaml │ │ ├── accounts_balances_get.yaml │ │ ├── accounts_beneficiaries_get.yaml │ │ ├── accounts_direct_debits_get.yaml │ │ ├── accounts_get.yaml │ │ ├── accounts_product_get.yaml │ │ ├── accounts_standing_orders_get.yaml │ │ ├── accounts_transactions_get.yaml │ │ └── parameters.yaml │ ├── accounts_requests │ │ ├── account_request_other.yaml │ │ ├── accounts_request_post.yaml │ │ ├── body.yaml │ │ └── parameters.yaml │ ├── balances │ │ └── balances_get.yaml │ ├── beneficiaries │ │ └── beneficiaries_get.yaml │ ├── direct_debits │ │ └── direct_debits_get.yaml │ ├── index.yaml │ ├── products │ │ └── products_get.yaml │ ├── standing_orders │ │ └── standing_orders_get.yaml │ └── transactions │ │ └── transactions_get.yaml │ ├── responses │ └── index.yaml │ └── security │ ├── PSU_OAuth2security.yaml │ ├── TPP_OAuth2security.yaml │ └── index.yaml ├── asciidoc ├── definitions.adoc ├── index.adoc ├── index.html ├── overview.adoc ├── paths.adoc └── security.adoc ├── data_definition └── A.1.1.1 │ ├── Enumerations.xlsx │ ├── OBACCOUNT.xls │ ├── OBBALANCE.xls │ ├── OBBENEFICIARY.xls │ ├── OBDIRECTDEBIT.xls │ ├── OBPRODUCT.xls │ ├── OBREQUEST.xls │ ├── OBRESPONSE.xls │ ├── OBReadAccount1.gif │ ├── OBReadBalance1.gif │ ├── OBReadBeneficiary1.gif │ ├── OBReadDirectDebit1.gif │ ├── OBReadProduct1.gif │ ├── OBReadRequest1.gif │ ├── OBReadResponse1.gif │ ├── OBReadStandingOrder1.gif │ ├── OBReadTransaction1.gif │ ├── OBSTANDINGORDER.xls │ ├── OBTRANSACTION.xls │ └── Permissions.xlsx ├── dist ├── .gitignore ├── accounts │ └── account_information_high_level_flow.png ├── v1.1 │ ├── account-info-swagger.json │ ├── account-info-swagger.pdf │ └── account-info-swagger.yaml ├── v2.0-rc3 │ ├── account-info-swagger.json │ └── account-info-swagger.yaml ├── v2.0-rc4 │ ├── account-info-swagger.json │ └── account-info-swagger.yaml ├── v2.0-rc5 │ ├── account-info-swagger.json │ └── account-info-swagger.yaml ├── v2.0.0 │ ├── account-info-swagger.json │ └── account-info-swagger.yaml ├── v3.0-RC3 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml ├── v3.0-RC4 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── callback-urls-swagger.json │ ├── callback-urls-swagger.yaml │ ├── confirmation-funds-swagger-dereferenced.yaml │ ├── confirmation-funds-swagger-with-allof.json │ ├── confirmation-funds-swagger-with-allof.yaml │ ├── confirmation-funds-swagger.json │ ├── confirmation-funds-swagger.yaml │ ├── event-notifications-swagger.json │ ├── event-notifications-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml ├── v3.0.0 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── confirmation-funds-swagger-dereferenced.yaml │ ├── confirmation-funds-swagger-with-allof.json │ ├── confirmation-funds-swagger-with-allof.yaml │ ├── confirmation-funds-swagger.json │ ├── confirmation-funds-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml ├── v3.1-draft2 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml ├── v3.1-draft3 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── confirmation-funds-swagger-dereferenced.yaml │ ├── confirmation-funds-swagger-with-allof.json │ ├── confirmation-funds-swagger-with-allof.yaml │ ├── confirmation-funds-swagger.json │ ├── confirmation-funds-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml └── v3.1-draft4 │ ├── account-info-swagger.json │ ├── account-info-swagger.yaml │ ├── confirmation-funds-swagger-dereferenced.yaml │ ├── confirmation-funds-swagger-with-allof.json │ ├── confirmation-funds-swagger-with-allof.yaml │ ├── confirmation-funds-swagger.json │ ├── confirmation-funds-swagger.yaml │ ├── payment-initiation-swagger-dereferenced.yaml │ ├── payment-initiation-swagger-with-allof.json │ ├── payment-initiation-swagger-with-allof.yaml │ ├── payment-initiation-swagger.json │ └── payment-initiation-swagger.yaml ├── docs └── accounts │ └── account_information_high_level_flow.wsd ├── inputs ├── v2.0.0 │ ├── accounts │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── AccountIdParam.yaml │ │ │ ├── AccountRequestIdParam.yaml │ │ │ ├── FromBookingDateTimeParam.yaml │ │ │ ├── OBReadRequest1Param.yaml │ │ │ ├── StatementIdParam.yaml │ │ │ └── ToBookingDateTimeParam.yaml │ │ ├── paths │ │ │ ├── CreateAccountRequest.yaml │ │ │ ├── DeleteAccountRequest.yaml │ │ │ ├── GetAccount.yaml │ │ │ ├── GetAccountBalances.yaml │ │ │ ├── GetAccountBeneficiaries.yaml │ │ │ ├── GetAccountDirectDebits.yaml │ │ │ ├── GetAccountOffers.yaml │ │ │ ├── GetAccountParty.yaml │ │ │ ├── GetAccountProduct.yaml │ │ │ ├── GetAccountRequest.yaml │ │ │ ├── GetAccountScheduledPayments.yaml │ │ │ ├── GetAccountStandingOrders.yaml │ │ │ ├── GetAccountStatement.yaml │ │ │ ├── GetAccountStatementFile.yaml │ │ │ ├── GetAccountStatementTransactions.yaml │ │ │ ├── GetAccountStatements.yaml │ │ │ ├── GetAccountTransactions.yaml │ │ │ ├── GetAccounts.yaml │ │ │ ├── GetBalances.yaml │ │ │ ├── GetBeneficiaries.yaml │ │ │ ├── GetDirectDebits.yaml │ │ │ ├── GetOffers.yaml │ │ │ ├── GetParty.yaml │ │ │ ├── GetProducts.yaml │ │ │ ├── GetScheduledPayments.yaml │ │ │ ├── GetStandingOrders.yaml │ │ │ ├── GetStatements.yaml │ │ │ └── GetTransactions.yaml │ │ └── responses │ │ │ ├── 200AccountBalancesRead.yaml │ │ │ ├── 200AccountBeneficiariesRead.yaml │ │ │ ├── 200AccountDirectDebitsRead.yaml │ │ │ ├── 200AccountOffersRead.yaml │ │ │ ├── 200AccountPartyRead.yaml │ │ │ ├── 200AccountProductRead.yaml │ │ │ ├── 200AccountRead.yaml │ │ │ ├── 200AccountRequestRead.yaml │ │ │ ├── 200AccountScheduledPaymentsRead.yaml │ │ │ ├── 200AccountStandingOrdersRead.yaml │ │ │ ├── 200AccountStatementFileRead.yaml │ │ │ ├── 200AccountStatementsRead.yaml │ │ │ ├── 200AccountTransactionsRead.yaml │ │ │ ├── 201AccountRequestCreated.yaml │ │ │ └── 204AccountRequestDeleted.yaml │ ├── data_definition │ │ ├── OBRDACCOUNT.csv │ │ ├── OBRDACCOUNTREQ.csv │ │ ├── OBRDACCOUNTRES.csv │ │ ├── OBRDBALANCE.csv │ │ ├── OBRDBENEFICIARY.csv │ │ ├── OBRDDIRECTDEBIT.csv │ │ ├── OBRDOFFER.csv │ │ ├── OBRDPARTY.csv │ │ ├── OBRDPRODUCT.csv │ │ ├── OBRDSCHEDULEDPAYMENT.csv │ │ ├── OBRDSTANDINGORDER.csv │ │ ├── OBRDSTATEMENT.csv │ │ ├── OBRDTRANSACTION.csv │ │ ├── Permissions.csv │ │ ├── ainfobca.2.2.0.swagger.json │ │ └── ainfopca.2.2.0.swagger.json │ └── readwrite │ │ ├── definitions │ │ ├── ISODateTime.yaml │ │ ├── Links.yaml │ │ ├── Meta.yaml │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ ├── AuthorizationParam.yaml │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ ├── x-fapi-financial-id-Param.yaml │ │ ├── x-fapi-interaction-id-Param.yaml │ │ └── x-jws-signature-Param.yaml │ │ ├── responses │ │ ├── 400ErrorResponse.yaml │ │ ├── 401ErrorResponse.yaml │ │ ├── 403ErrorResponse.yaml │ │ ├── 405ErrorResponse.yaml │ │ ├── 406ErrorResponse.yaml │ │ ├── 429ErrorResponse.yaml │ │ └── 500ErrorResponse.yaml │ │ └── securityDefinitions │ │ ├── PSUOAuth2Security.yaml │ │ └── TPPOAuth2Security.yaml ├── v3.0-RC4 │ ├── account-info │ │ ├── definitions │ │ │ ├── AccountId.yaml │ │ │ ├── ActiveOrHistoricCurrencyCode.yaml │ │ │ ├── OBAccount2.yaml │ │ │ ├── OBAccount2Basic.yaml │ │ │ ├── OBAccount2Detail.yaml │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBBCAData1.yaml │ │ │ ├── OBBalanceType1Code.yaml │ │ │ ├── OBBankTransactionCodeStructure1.yaml │ │ │ ├── OBBeneficiary2.yaml │ │ │ ├── OBBeneficiary2Basic.yaml │ │ │ ├── OBBeneficiary2Detail.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification4.yaml │ │ │ ├── OBCashAccount3.yaml │ │ │ ├── OBCashAccount4.yaml │ │ │ ├── OBCashBalance1.yaml │ │ │ ├── OBCreditDebitCode.yaml │ │ │ ├── OBCreditLine1.yaml │ │ │ ├── OBCurrencyExchange5.yaml │ │ │ ├── OBDirectDebit1.yaml │ │ │ ├── OBEntryStatus1Code.yaml │ │ │ ├── OBExternalAccountSubType1Code.yaml │ │ │ ├── OBExternalAccountType1Code.yaml │ │ │ ├── OBExternalCardAuthorisationType1Code.yaml │ │ │ ├── OBExternalCardSchemeType1Code.yaml │ │ │ ├── OBExternalDirectDebitStatus1Code.yaml │ │ │ ├── OBExternalLimitType1Code.yaml │ │ │ ├── OBExternalOfferType1Code.yaml │ │ │ ├── OBExternalPartyType1Code.yaml │ │ │ ├── OBExternalPermissions1Code.yaml │ │ │ ├── OBExternalProductType1Code.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBExternalScheduleType1Code.yaml │ │ │ ├── OBExternalStandingOrderStatus1Code.yaml │ │ │ ├── OBExternalStatementType1Code.yaml │ │ │ ├── OBMerchantDetails1.yaml │ │ │ ├── OBOffer1.yaml │ │ │ ├── OBOtherProductType1.yaml │ │ │ ├── OBPCAData1.yaml │ │ │ ├── OBParty1.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPostalAddress8.yaml │ │ │ ├── OBProduct2.yaml │ │ │ ├── OBReadAccount2.yaml │ │ │ ├── OBReadBalance1.yaml │ │ │ ├── OBReadBeneficiary2.yaml │ │ │ ├── OBReadConsent1.yaml │ │ │ ├── OBReadConsentResponse1.yaml │ │ │ ├── OBReadData1.yaml │ │ │ ├── OBReadDirectDebit1.yaml │ │ │ ├── OBReadOffer1.yaml │ │ │ ├── OBReadParty1.yaml │ │ │ ├── OBReadProduct2.yaml │ │ │ ├── OBReadScheduledPayment1.yaml │ │ │ ├── OBReadStandingOrder3.yaml │ │ │ ├── OBReadStatement1.yaml │ │ │ ├── OBReadTransaction3.yaml │ │ │ ├── OBScheduledPayment1.yaml │ │ │ ├── OBScheduledPayment1Basic.yaml │ │ │ ├── OBScheduledPayment1Detail.yaml │ │ │ ├── OBStandingOrder3.yaml │ │ │ ├── OBStandingOrder3Basic.yaml │ │ │ ├── OBStandingOrder3Detail.yaml │ │ │ ├── OBStatement1.yaml │ │ │ ├── OBStatement1Basic.yaml │ │ │ ├── OBStatement1Detail.yaml │ │ │ ├── OBStatementAmount1.yaml │ │ │ ├── OBStatementAmount1Basic.yaml │ │ │ ├── OBStatementAmount1Detail.yaml │ │ │ ├── OBStatementBenefit1.yaml │ │ │ ├── OBStatementDateTime1.yaml │ │ │ ├── OBStatementFee1.yaml │ │ │ ├── OBStatementInterest1.yaml │ │ │ ├── OBStatementRate1.yaml │ │ │ ├── OBStatementValue1.yaml │ │ │ ├── OBTransaction3.yaml │ │ │ ├── OBTransaction3Basic.yaml │ │ │ ├── OBTransaction3Detail.yaml │ │ │ ├── OBTransactionCardInstrument1.yaml │ │ │ ├── OBTransactionCashBalance.yaml │ │ │ ├── OB_OtherProductType1.yaml │ │ │ └── TransactionInformation.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── AccountId.yaml │ │ │ ├── AccountIdParam.yaml │ │ │ ├── AccountRequestIdParam.yaml │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── ConsentId.yaml │ │ │ ├── FromBookingDateTimeParam.yaml │ │ │ ├── FromStatementDateTimeParam.yaml │ │ │ ├── OBReadConsent1Param.yaml │ │ │ ├── OBReadRequest1Param.yaml │ │ │ ├── StatementId.yaml │ │ │ ├── StatementIdParam.yaml │ │ │ ├── ToBookingDateTimeParam.yaml │ │ │ ├── ToStatementDateTimeParam.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateAccountAccessConsents.yaml │ │ │ ├── CreateAccountRequest.yaml │ │ │ ├── DeleteAccountAccessConsentsConsentId.yaml │ │ │ ├── DeleteAccountRequest.yaml │ │ │ ├── GetAccountAccessConsentsConsentId.yaml │ │ │ ├── GetAccounts.yaml │ │ │ ├── GetAccountsAccountId.yaml │ │ │ ├── GetAccountsAccountIdBalances.yaml │ │ │ ├── GetAccountsAccountIdBeneficiaries.yaml │ │ │ ├── GetAccountsAccountIdDirectDebits.yaml │ │ │ ├── GetAccountsAccountIdOffers.yaml │ │ │ ├── GetAccountsAccountIdParty.yaml │ │ │ ├── GetAccountsAccountIdProduct.yaml │ │ │ ├── GetAccountsAccountIdScheduledPayments.yaml │ │ │ ├── GetAccountsAccountIdStandingOrders.yaml │ │ │ ├── GetAccountsAccountIdStatements.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementId.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdFile.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdTransactions.yaml │ │ │ ├── GetAccountsAccountIdTransactions.yaml │ │ │ ├── GetBalances.yaml │ │ │ ├── GetBeneficiaries.yaml │ │ │ ├── GetDirectDebits.yaml │ │ │ ├── GetOffers.yaml │ │ │ ├── GetParty.yaml │ │ │ ├── GetProducts.yaml │ │ │ ├── GetScheduledPayments.yaml │ │ │ ├── GetStandingOrders.yaml │ │ │ ├── GetStatements.yaml │ │ │ └── GetTransactions.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200AccountAccessConsentsConsentIdRead.yaml │ │ │ ├── 200AccountAccessConsentsDeleted.yaml │ │ │ ├── 200AccountAccessConsentsRead.yaml │ │ │ ├── 200AccountBalancesRead.yaml │ │ │ ├── 200AccountBeneficiariesRead.yaml │ │ │ ├── 200AccountDirectDebitsRead.yaml │ │ │ ├── 200AccountOffersRead.yaml │ │ │ ├── 200AccountPartyRead.yaml │ │ │ ├── 200AccountProductRead.yaml │ │ │ ├── 200AccountRead.yaml │ │ │ ├── 200AccountRequestRead.yaml │ │ │ ├── 200AccountScheduledPaymentsRead.yaml │ │ │ ├── 200AccountStandingOrdersRead.yaml │ │ │ ├── 200AccountStatementFileRead.yaml │ │ │ ├── 200AccountStatementsRead.yaml │ │ │ ├── 200AccountTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdBalancesRead.yaml │ │ │ ├── 200AccountsAccountIdBeneficiariesRead.yaml │ │ │ ├── 200AccountsAccountIdDirectDebitsRead.yaml │ │ │ ├── 200AccountsAccountIdOffersRead.yaml │ │ │ ├── 200AccountsAccountIdPartyRead.yaml │ │ │ ├── 200AccountsAccountIdProductRead.yaml │ │ │ ├── 200AccountsAccountIdRead.yaml │ │ │ ├── 200AccountsAccountIdScheduledPaymentsRead.yaml │ │ │ ├── 200AccountsAccountIdStandingOrdersRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdFileRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdTransactionsRead.yaml │ │ │ ├── 200AccountsRead.yaml │ │ │ ├── 200BalancesRead.yaml │ │ │ ├── 200BeneficiariesRead.yaml │ │ │ ├── 200DirectDebitsRead.yaml │ │ │ ├── 200OffersRead.yaml │ │ │ ├── 200PartyRead.yaml │ │ │ ├── 200ProductsRead.yaml │ │ │ ├── 200ScheduledPaymentsRead.yaml │ │ │ ├── 200StandingOrdersRead.yaml │ │ │ ├── 200StatementsRead.yaml │ │ │ ├── 200TransactionsRead.yaml │ │ │ ├── 201AccountAccessConsentsCreated.yaml │ │ │ ├── 201AccountRequestCreated.yaml │ │ │ ├── 204AccountAccessConsentsConsentIdDeleted.yaml │ │ │ ├── 204AccountAccessConsentsDeleted.yaml │ │ │ └── 204AccountRequestDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── confirmation-funds │ │ ├── definitions │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBCashAccountDebtor3.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBFundsConfirmation1.yaml │ │ │ ├── OBFundsConfirmationConsent1.yaml │ │ │ ├── OBFundsConfirmationConsentData1.yaml │ │ │ ├── OBFundsConfirmationConsentDataResponse1.yaml │ │ │ ├── OBFundsConfirmationConsentResponse1.yaml │ │ │ ├── OBFundsConfirmationData1.yaml │ │ │ ├── OBFundsConfirmationDataResponse1.yaml │ │ │ └── OBFundsConfirmationResponse1.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── OBFundsConfirmation1Param.yaml │ │ │ ├── OBFundsConfirmationConsent1Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateFundsConfirmationConsents.yaml │ │ │ ├── CreateFundsConfirmations.yaml │ │ │ ├── DeleteFundsConfirmationConsentsConsentId.yaml │ │ │ └── GetFundsConfirmationConsentsConsentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200FundsConfirmationConsentRead.yaml │ │ │ ├── 200FundsConfirmationConsentsConsentIdRead.yaml │ │ │ ├── 201FundsConfirmationConsentCreated.yaml │ │ │ ├── 201FundsConfirmationConsentsCreated.yaml │ │ │ ├── 201FundsConfirmationCreated.yaml │ │ │ ├── 201FundsConfirmationsCreated.yaml │ │ │ └── 204FundsConfirmationConsentsConsentIdDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── data_definition │ │ ├── account-info │ │ │ ├── OBReadAccount2.csv │ │ │ ├── OBReadBalance1.csv │ │ │ ├── OBReadBeneficiary2.csv │ │ │ ├── OBReadConsent1.csv │ │ │ ├── OBReadConsentResponse1.csv │ │ │ ├── OBReadDirectDebit1.csv │ │ │ ├── OBReadOffer1.csv │ │ │ ├── OBReadParty1.csv │ │ │ ├── OBReadProduct2.csv │ │ │ ├── OBReadScheduledPayment1.csv │ │ │ ├── OBReadStandingOrder3.csv │ │ │ ├── OBReadStatement1.csv │ │ │ ├── OBReadTransaction3.csv │ │ │ └── Permissions.csv │ │ ├── ainfobca.2.2.0.swagger.json │ │ ├── ainfopca.2.2.0.swagger.json │ │ ├── confirmation-funds │ │ │ ├── OBFundsConfirmation1.csv │ │ │ ├── OBFundsConfirmationConsent1.csv │ │ │ ├── OBFundsConfirmationConsentResponse1.csv │ │ │ └── OBFundsConfirmationResponse1.csv │ │ ├── event-notifications │ │ │ ├── OBCallbackUrl1.csv │ │ │ ├── OBCallbackUrlResponse1.csv │ │ │ ├── OBCallbackUrlsResponse1.csv │ │ │ ├── OBErrorResponse1.csv │ │ │ └── OBEventNotification1.csv │ │ └── payment-initiation │ │ │ ├── OBWriteDomestic1.csv │ │ │ ├── OBWriteDomesticConsent1.csv │ │ │ ├── OBWriteDomesticConsentResponse1.csv │ │ │ ├── OBWriteDomesticResponse1.csv │ │ │ ├── OBWriteDomesticScheduled1.csv │ │ │ ├── OBWriteDomesticScheduledConsent1.csv │ │ │ ├── OBWriteDomesticScheduledConsentResponse1.csv │ │ │ ├── OBWriteDomesticScheduledResponse1.csv │ │ │ ├── OBWriteDomesticStandingOrder1.csv │ │ │ ├── OBWriteDomesticStandingOrderConsent1.csv │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse1.csv │ │ │ ├── OBWriteDomesticStandingOrderResponse1.csv │ │ │ ├── OBWriteFile1.csv │ │ │ ├── OBWriteFileConsent1.csv │ │ │ ├── OBWriteFileConsentResponse1.csv │ │ │ ├── OBWriteFileResponse1.csv │ │ │ ├── OBWriteInternational1.csv │ │ │ ├── OBWriteInternationalConsent1.csv │ │ │ ├── OBWriteInternationalConsentResponse1.csv │ │ │ ├── OBWriteInternationalResponse1.csv │ │ │ ├── OBWriteInternationalScheduled1.csv │ │ │ ├── OBWriteInternationalScheduledConsent1.csv │ │ │ ├── OBWriteInternationalScheduledConsentResponse1.csv │ │ │ ├── OBWriteInternationalScheduledResponse1.csv │ │ │ ├── OBWriteInternationalStandingOrder1.csv │ │ │ ├── OBWriteInternationalStandingOrderConsent1.csv │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse1.csv │ │ │ └── OBWriteInternationalStandingOrderResponse1.csv │ ├── payment-initiation │ │ ├── definitions │ │ │ ├── ActiveOrHistoricCurrencyCode.yaml │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBAuthorisation1.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBCashAccountCreditor2.yaml │ │ │ ├── OBCashAccountDebtor3.yaml │ │ │ ├── OBCharge1.yaml │ │ │ ├── OBChargeBearerType1Code.yaml │ │ │ ├── OBDomestic1.yaml │ │ │ ├── OBDomesticScheduled1.yaml │ │ │ ├── OBDomesticStandingOrder1.yaml │ │ │ ├── OBExchangeRate1.yaml │ │ │ ├── OBExchangeRate2.yaml │ │ │ ├── OBExchangeRateType2Code.yaml │ │ │ ├── OBExternalAuthorisation1Code.yaml │ │ │ ├── OBExternalConsentStatus1Code.yaml │ │ │ ├── OBExternalConsentStatus2Code.yaml │ │ │ ├── OBExternalPaymentContext1Code.yaml │ │ │ ├── OBExternalPermissions2Code.yaml │ │ │ ├── OBExternalStatus1Code.yaml │ │ │ ├── OBExternalStatus2Code.yaml │ │ │ ├── OBFile1.yaml │ │ │ ├── OBInternational1.yaml │ │ │ ├── OBInternationalScheduled1.yaml │ │ │ ├── OBInternationalStandingOrder1.yaml │ │ │ ├── OBMultiAuthorisation1.yaml │ │ │ ├── OBPartyIdentification43.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPriority2Code.yaml │ │ │ ├── OBRemittanceInformation1.yaml │ │ │ ├── OBRisk1.yaml │ │ │ ├── OBTransactionIndividualStatus1Code.yaml │ │ │ ├── OBWriteDataDomestic1.yaml │ │ │ ├── OBWriteDataDomesticConsent1.yaml │ │ │ ├── OBWriteDataDomesticConsentResponse1.yaml │ │ │ ├── OBWriteDataDomesticResponse1.yaml │ │ │ ├── OBWriteDataDomesticScheduled1.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsent1.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsentResponse1.yaml │ │ │ ├── OBWriteDataDomesticScheduledResponse1.yaml │ │ │ ├── OBWriteDataDomesticStandingOrder1.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsent1.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsentResponse1.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderResponse1.yaml │ │ │ ├── OBWriteDataFile1.yaml │ │ │ ├── OBWriteDataFileConsent1.yaml │ │ │ ├── OBWriteDataFileConsentResponse1.yaml │ │ │ ├── OBWriteDataFileResponse1.yaml │ │ │ ├── OBWriteDataInternational1.yaml │ │ │ ├── OBWriteDataInternationalConsent1.yaml │ │ │ ├── OBWriteDataInternationalConsentResponse1.yaml │ │ │ ├── OBWriteDataInternationalResponse1.yaml │ │ │ ├── OBWriteDataInternationalScheduled1.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsent1.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsentResponse1.yaml │ │ │ ├── OBWriteDataInternationalScheduledResponse1.yaml │ │ │ ├── OBWriteDataInternationalStandingOrder1.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsent1.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsentResponse1.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderResponse1.yaml │ │ │ ├── OBWriteDomestic1.yaml │ │ │ ├── OBWriteDomesticConsent1.yaml │ │ │ ├── OBWriteDomesticConsentResponse1.yaml │ │ │ ├── OBWriteDomesticResponse1.yaml │ │ │ ├── OBWriteDomesticScheduled1.yaml │ │ │ ├── OBWriteDomesticScheduledConsent1.yaml │ │ │ ├── OBWriteDomesticScheduledConsentResponse1.yaml │ │ │ ├── OBWriteDomesticScheduledResponse1.yaml │ │ │ ├── OBWriteDomesticStandingOrder1.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent1.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse1.yaml │ │ │ ├── OBWriteDomesticStandingOrderResponse1.yaml │ │ │ ├── OBWriteFile1.yaml │ │ │ ├── OBWriteFileConsent1.yaml │ │ │ ├── OBWriteFileConsentResponse1.yaml │ │ │ ├── OBWriteFileResponse1.yaml │ │ │ ├── OBWriteInternational1.yaml │ │ │ ├── OBWriteInternationalConsent1.yaml │ │ │ ├── OBWriteInternationalConsentResponse1.yaml │ │ │ ├── OBWriteInternationalResponse1.yaml │ │ │ ├── OBWriteInternationalScheduled1.yaml │ │ │ ├── OBWriteInternationalScheduledConsent1.yaml │ │ │ ├── OBWriteInternationalScheduledConsentResponse1.yaml │ │ │ ├── OBWriteInternationalScheduledResponse1.yaml │ │ │ ├── OBWriteInternationalStandingOrder1.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent1.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse1.yaml │ │ │ └── OBWriteInternationalStandingOrderResponse1.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── DomesticPaymentId.yaml │ │ │ ├── DomesticScheduledPaymentId.yaml │ │ │ ├── DomesticStandingOrderId.yaml │ │ │ ├── FileParam.yaml │ │ │ ├── FilePaymentId.yaml │ │ │ ├── InternationalPaymentId.yaml │ │ │ ├── InternationalScheduledPaymentId.yaml │ │ │ ├── InternationalStandingOrderPaymentId.yaml │ │ │ ├── OBPaymentSetup1Param.yaml │ │ │ ├── OBWriteDomestic1Param.yaml │ │ │ ├── OBWriteDomesticConsent1Param.yaml │ │ │ ├── OBWriteDomesticScheduled1Param.yaml │ │ │ ├── OBWriteDomesticScheduledConsent1Param.yaml │ │ │ ├── OBWriteDomesticStandingOrder1Param.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent1Param.yaml │ │ │ ├── OBWriteFile1Param.yaml │ │ │ ├── OBWriteFileConsent1Param.yaml │ │ │ ├── OBWriteInternational1Param.yaml │ │ │ ├── OBWriteInternationalConsent1Param.yaml │ │ │ ├── OBWriteInternationalScheduled1Param.yaml │ │ │ ├── OBWriteInternationalScheduledConsent1Param.yaml │ │ │ ├── OBWriteInternationalStandingOrder1Param.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent1Param.yaml │ │ │ ├── OBWriteStandingOrder1Param.yaml │ │ │ ├── OBWriteStandingOrderConsent1Param.yaml │ │ │ ├── x-idempotency-key.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ ├── paths │ │ │ ├── CreateDomesticPaymentConsents.yaml │ │ │ ├── CreateDomesticPayments.yaml │ │ │ ├── CreateDomesticScheduledPaymentConsents.yaml │ │ │ ├── CreateDomesticScheduledPayments.yaml │ │ │ ├── CreateDomesticStandingOrderConsents.yaml │ │ │ ├── CreateDomesticStandingOrders.yaml │ │ │ ├── CreateFilePaymentConsents.yaml │ │ │ ├── CreateFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── CreateFilePayments.yaml │ │ │ ├── CreateInternationalPaymentConsents.yaml │ │ │ ├── CreateInternationalPayments.yaml │ │ │ ├── CreateInternationalScheduledPaymentConsents.yaml │ │ │ ├── CreateInternationalScheduledPayments.yaml │ │ │ ├── CreateInternationalStandingOrderConsents.yaml │ │ │ ├── CreateInternationalStandingOrders.yaml │ │ │ ├── GetDomesticPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticPaymentsDomesticPaymentId.yaml │ │ │ ├── GetDomesticScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticScheduledPaymentsDomesticScheduledPaymentId.yaml │ │ │ ├── GetDomesticStandingOrderConsentsConsentId.yaml │ │ │ ├── GetDomesticStandingOrdersDomesticStandingOrderId.yaml │ │ │ ├── GetFilePaymentConsentsConsentId.yaml │ │ │ ├── GetFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── GetFilePaymentsFilePaymentId.yaml │ │ │ ├── GetFilePaymentsFilePaymentIdReportFile.yaml │ │ │ ├── GetInternationalPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalPaymentsInternationalPaymentId.yaml │ │ │ ├── GetInternationalScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalScheduledPaymentsInternationalScheduledPaymentId.yaml │ │ │ ├── GetInternationalStandingOrderConsentsConsentId.yaml │ │ │ └── GetInternationalStandingOrdersInternationalStandingOrderPaymentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200ConsentsRead.yaml │ │ │ ├── 200DomesticPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticPaymentConsentsRead.yaml │ │ │ ├── 200DomesticPaymentsDomesticPaymentIdRead.yaml │ │ │ ├── 200DomesticPaymentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsDomesticScheduledPaymentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsRead.yaml │ │ │ ├── 200DomesticStandingOrdersDomesticStandingOrderIdRead.yaml │ │ │ ├── 200DomesticStandingOrdersRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileCreated.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdRead.yaml │ │ │ ├── 200FilePaymentConsentsCreated.yaml │ │ │ ├── 200FilePaymentConsentsRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdReportFileRead.yaml │ │ │ ├── 200FilePaymentsRead.yaml │ │ │ ├── 200InternationalPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalPaymentConsentsRead.yaml │ │ │ ├── 200InternationalPaymentsInternationalPaymentIdRead.yaml │ │ │ ├── 200InternationalPaymentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsInternationalScheduledPaymentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsRead.yaml │ │ │ ├── 200InternationalStandingOrdersInternationalStandingOrderPaymentIdRead.yaml │ │ │ ├── 200InternationalStandingOrdersRead.yaml │ │ │ ├── 200PaymentConsentsCreated.yaml │ │ │ ├── 200PaymentConsentsRead.yaml │ │ │ ├── 200PaymentsRead.yaml │ │ │ ├── 201ConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentsCreated.yaml │ │ │ ├── 201DomesticStandingOrderConsentsCreated.yaml │ │ │ ├── 201DomesticStandingOrdersCreated.yaml │ │ │ ├── 201FilePaymentConsentsCreated.yaml │ │ │ ├── 201FilePaymentsCreated.yaml │ │ │ ├── 201InternationalPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalPaymentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentsCreated.yaml │ │ │ ├── 201InternationalStandingOrderConsentsCreated.yaml │ │ │ ├── 201InternationalStandingOrdersCreated.yaml │ │ │ └── 201PaymentsCreated.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ └── readwrite │ │ ├── definitions │ │ ├── Error.yaml │ │ ├── File.yaml │ │ ├── ISODateTime.yaml │ │ ├── Links.yaml │ │ ├── Meta.yaml │ │ ├── OBBCAData1.yaml │ │ ├── OBError1.yaml │ │ ├── OBErrorResponse1.yaml │ │ ├── OBPCAData1.yaml │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ ├── AuthorizationParam.yaml │ │ ├── x-customer-user-agent-Param.yaml │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ ├── x-fapi-financial-id-Param.yaml │ │ ├── x-fapi-interaction-id-Param.yaml │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ ├── 400ErrorResponse.yaml │ │ ├── 401ErrorResponse.yaml │ │ ├── 403ErrorResponse.yaml │ │ ├── 404ErrorResponse.yaml │ │ ├── 405ErrorResponse.yaml │ │ ├── 406ErrorResponse.yaml │ │ ├── 415ErrorResponse.yaml │ │ ├── 429ErrorResponse.yaml │ │ └── 500ErrorResponse.yaml ├── v3.1-draft2 │ ├── account-info │ │ ├── definitions │ │ │ ├── AccountId.yaml │ │ │ ├── OBAccount2.yaml │ │ │ ├── OBAccount2Basic.yaml │ │ │ ├── OBAccount2Detail.yaml │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBBCAData1.yaml │ │ │ ├── OBBalanceType1Code.yaml │ │ │ ├── OBBankTransactionCodeStructure1.yaml │ │ │ ├── OBBeneficiary2.yaml │ │ │ ├── OBBeneficiary2Basic.yaml │ │ │ ├── OBBeneficiary2Detail.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification4.yaml │ │ │ ├── OBCashAccount3.yaml │ │ │ ├── OBCashAccount4.yaml │ │ │ ├── OBCashBalance1.yaml │ │ │ ├── OBCreditDebitCode.yaml │ │ │ ├── OBCreditLine1.yaml │ │ │ ├── OBCurrencyExchange5.yaml │ │ │ ├── OBDirectDebit1.yaml │ │ │ ├── OBEntryStatus1Code.yaml │ │ │ ├── OBExternalAccountSubType1Code.yaml │ │ │ ├── OBExternalAccountType1Code.yaml │ │ │ ├── OBExternalCardAuthorisationType1Code.yaml │ │ │ ├── OBExternalCardSchemeType1Code.yaml │ │ │ ├── OBExternalDirectDebitStatus1Code.yaml │ │ │ ├── OBExternalLimitType1Code.yaml │ │ │ ├── OBExternalOfferType1Code.yaml │ │ │ ├── OBExternalPartyType1Code.yaml │ │ │ ├── OBExternalPermissions1Code.yaml │ │ │ ├── OBExternalProductType1Code.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBExternalScheduleType1Code.yaml │ │ │ ├── OBExternalStandingOrderStatus1Code.yaml │ │ │ ├── OBExternalStatementType1Code.yaml │ │ │ ├── OBMerchantDetails1.yaml │ │ │ ├── OBOffer1.yaml │ │ │ ├── OBOtherProductType1.yaml │ │ │ ├── OBPCAData1.yaml │ │ │ ├── OBParty1.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPostalAddress8.yaml │ │ │ ├── OBProduct2.yaml │ │ │ ├── OBReadAccount2.yaml │ │ │ ├── OBReadBalance1.yaml │ │ │ ├── OBReadBeneficiary2.yaml │ │ │ ├── OBReadConsent1.yaml │ │ │ ├── OBReadConsentResponse1.yaml │ │ │ ├── OBReadData1.yaml │ │ │ ├── OBReadDirectDebit1.yaml │ │ │ ├── OBReadOffer1.yaml │ │ │ ├── OBReadParty1.yaml │ │ │ ├── OBReadProduct2.yaml │ │ │ ├── OBReadScheduledPayment1.yaml │ │ │ ├── OBReadStandingOrder4.yaml │ │ │ ├── OBReadStatement1.yaml │ │ │ ├── OBReadTransaction4.yaml │ │ │ ├── OBScheduledPayment1.yaml │ │ │ ├── OBScheduledPayment1Basic.yaml │ │ │ ├── OBScheduledPayment1Detail.yaml │ │ │ ├── OBStandingOrder4.yaml │ │ │ ├── OBStandingOrder4Basic.yaml │ │ │ ├── OBStandingOrder4Detail.yaml │ │ │ ├── OBStatement1.yaml │ │ │ ├── OBStatement1Basic.yaml │ │ │ ├── OBStatement1Detail.yaml │ │ │ ├── OBStatementAmount1.yaml │ │ │ ├── OBStatementBenefit1.yaml │ │ │ ├── OBStatementDateTime1.yaml │ │ │ ├── OBStatementFee1.yaml │ │ │ ├── OBStatementInterest1.yaml │ │ │ ├── OBStatementRate1.yaml │ │ │ ├── OBStatementValue1.yaml │ │ │ ├── OBSupplementaryData1.yaml │ │ │ ├── OBTransaction4.yaml │ │ │ ├── OBTransaction4Basic.yaml │ │ │ ├── OBTransaction4Detail.yaml │ │ │ ├── OBTransactionCardInstrument1.yaml │ │ │ ├── OBTransactionCashBalance.yaml │ │ │ └── TransactionInformation.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── AccountId.yaml │ │ │ ├── AccountIdParam.yaml │ │ │ ├── AccountRequestIdParam.yaml │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── ConsentId.yaml │ │ │ ├── FromBookingDateTimeParam.yaml │ │ │ ├── FromStatementDateTimeParam.yaml │ │ │ ├── OBReadConsent1Param.yaml │ │ │ ├── OBReadRequest1Param.yaml │ │ │ ├── StatementId.yaml │ │ │ ├── StatementIdParam.yaml │ │ │ ├── ToBookingDateTimeParam.yaml │ │ │ ├── ToStatementDateTimeParam.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateAccountAccessConsents.yaml │ │ │ ├── CreateAccountRequest.yaml │ │ │ ├── DeleteAccountAccessConsentsConsentId.yaml │ │ │ ├── DeleteAccountRequest.yaml │ │ │ ├── GetAccountAccessConsentsConsentId.yaml │ │ │ ├── GetAccounts.yaml │ │ │ ├── GetAccountsAccountId.yaml │ │ │ ├── GetAccountsAccountIdBalances.yaml │ │ │ ├── GetAccountsAccountIdBeneficiaries.yaml │ │ │ ├── GetAccountsAccountIdDirectDebits.yaml │ │ │ ├── GetAccountsAccountIdOffers.yaml │ │ │ ├── GetAccountsAccountIdParty.yaml │ │ │ ├── GetAccountsAccountIdProduct.yaml │ │ │ ├── GetAccountsAccountIdScheduledPayments.yaml │ │ │ ├── GetAccountsAccountIdStandingOrders.yaml │ │ │ ├── GetAccountsAccountIdStatements.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementId.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdFile.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdTransactions.yaml │ │ │ ├── GetAccountsAccountIdTransactions.yaml │ │ │ ├── GetBalances.yaml │ │ │ ├── GetBeneficiaries.yaml │ │ │ ├── GetDirectDebits.yaml │ │ │ ├── GetOffers.yaml │ │ │ ├── GetParty.yaml │ │ │ ├── GetProducts.yaml │ │ │ ├── GetScheduledPayments.yaml │ │ │ ├── GetStandingOrders.yaml │ │ │ ├── GetStatements.yaml │ │ │ └── GetTransactions.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200AccountAccessConsentsConsentIdRead.yaml │ │ │ ├── 200AccountAccessConsentsDeleted.yaml │ │ │ ├── 200AccountAccessConsentsRead.yaml │ │ │ ├── 200AccountBalancesRead.yaml │ │ │ ├── 200AccountBeneficiariesRead.yaml │ │ │ ├── 200AccountDirectDebitsRead.yaml │ │ │ ├── 200AccountOffersRead.yaml │ │ │ ├── 200AccountPartyRead.yaml │ │ │ ├── 200AccountProductRead.yaml │ │ │ ├── 200AccountRead.yaml │ │ │ ├── 200AccountRequestRead.yaml │ │ │ ├── 200AccountScheduledPaymentsRead.yaml │ │ │ ├── 200AccountStandingOrdersRead.yaml │ │ │ ├── 200AccountStatementFileRead.yaml │ │ │ ├── 200AccountStatementsRead.yaml │ │ │ ├── 200AccountTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdBalancesRead.yaml │ │ │ ├── 200AccountsAccountIdBeneficiariesRead.yaml │ │ │ ├── 200AccountsAccountIdDirectDebitsRead.yaml │ │ │ ├── 200AccountsAccountIdOffersRead.yaml │ │ │ ├── 200AccountsAccountIdPartyRead.yaml │ │ │ ├── 200AccountsAccountIdProductRead.yaml │ │ │ ├── 200AccountsAccountIdRead.yaml │ │ │ ├── 200AccountsAccountIdScheduledPaymentsRead.yaml │ │ │ ├── 200AccountsAccountIdStandingOrdersRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdFileRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdTransactionsRead.yaml │ │ │ ├── 200AccountsRead.yaml │ │ │ ├── 200BalancesRead.yaml │ │ │ ├── 200BeneficiariesRead.yaml │ │ │ ├── 200DirectDebitsRead.yaml │ │ │ ├── 200OffersRead.yaml │ │ │ ├── 200PartyRead.yaml │ │ │ ├── 200ProductsRead.yaml │ │ │ ├── 200ScheduledPaymentsRead.yaml │ │ │ ├── 200StandingOrdersRead.yaml │ │ │ ├── 200StatementsRead.yaml │ │ │ ├── 200TransactionsRead.yaml │ │ │ ├── 201AccountAccessConsentsCreated.yaml │ │ │ ├── 201AccountRequestCreated.yaml │ │ │ ├── 204AccountAccessConsentsConsentIdDeleted.yaml │ │ │ ├── 204AccountAccessConsentsDeleted.yaml │ │ │ └── 204AccountRequestDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── confirmation-funds │ │ ├── definitions │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBCashAccountDebtor3.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBFundsConfirmation1.yaml │ │ │ ├── OBFundsConfirmationConsent1.yaml │ │ │ ├── OBFundsConfirmationConsentData1.yaml │ │ │ ├── OBFundsConfirmationConsentDataResponse1.yaml │ │ │ ├── OBFundsConfirmationConsentResponse1.yaml │ │ │ ├── OBFundsConfirmationData1.yaml │ │ │ ├── OBFundsConfirmationDataResponse1.yaml │ │ │ └── OBFundsConfirmationResponse1.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── OBFundsConfirmation1Param.yaml │ │ │ ├── OBFundsConfirmationConsent1Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateFundsConfirmationConsents.yaml │ │ │ ├── CreateFundsConfirmations.yaml │ │ │ ├── DeleteFundsConfirmationConsentsConsentId.yaml │ │ │ └── GetFundsConfirmationConsentsConsentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200FundsConfirmationConsentRead.yaml │ │ │ ├── 200FundsConfirmationConsentsConsentIdRead.yaml │ │ │ ├── 201FundsConfirmationConsentCreated.yaml │ │ │ ├── 201FundsConfirmationConsentsCreated.yaml │ │ │ ├── 201FundsConfirmationCreated.yaml │ │ │ ├── 201FundsConfirmationsCreated.yaml │ │ │ └── 204FundsConfirmationConsentsConsentIdDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── data_definition │ │ ├── account-info │ │ │ ├── OBReadAccount2.csv │ │ │ ├── OBReadBalance1.csv │ │ │ ├── OBReadBeneficiary2.csv │ │ │ ├── OBReadConsent1.csv │ │ │ ├── OBReadConsentResponse1.csv │ │ │ ├── OBReadDirectDebit1.csv │ │ │ ├── OBReadOffer1.csv │ │ │ ├── OBReadParty1.csv │ │ │ ├── OBReadProduct2.csv │ │ │ ├── OBReadScheduledPayment1.csv │ │ │ ├── OBReadStandingOrder4.csv │ │ │ ├── OBReadStatement1.csv │ │ │ ├── OBReadTransaction4.csv │ │ │ └── Permissions.csv │ │ ├── ainfobca.2.2.0.swagger.json │ │ ├── ainfopca.2.2.0.swagger.json │ │ ├── confirmation-funds │ │ │ ├── OBFundsConfirmation1.csv │ │ │ ├── OBFundsConfirmationConsent1.csv │ │ │ ├── OBFundsConfirmationConsentResponse1.csv │ │ │ └── OBFundsConfirmationResponse1.csv │ │ ├── event-notifications │ │ │ ├── OBCallbackUrl1.csv │ │ │ ├── OBCallbackUrlResponse1.csv │ │ │ ├── OBCallbackUrlsResponse1.csv │ │ │ ├── OBErrorResponse1.csv │ │ │ └── OBEventNotification1.csv │ │ └── payment-initiation │ │ │ ├── OBWriteDomestic2.csv │ │ │ ├── OBWriteDomesticConsent2.csv │ │ │ ├── OBWriteDomesticConsentResponse2.csv │ │ │ ├── OBWriteDomesticResponse2.csv │ │ │ ├── OBWriteDomesticScheduled2.csv │ │ │ ├── OBWriteDomesticScheduledConsent2.csv │ │ │ ├── OBWriteDomesticScheduledConsentResponse2.csv │ │ │ ├── OBWriteDomesticScheduledResponse2.csv │ │ │ ├── OBWriteDomesticStandingOrder2.csv │ │ │ ├── OBWriteDomesticStandingOrderConsent2.csv │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse2.csv │ │ │ ├── OBWriteDomesticStandingOrderResponse2.csv │ │ │ ├── OBWriteFile2.csv │ │ │ ├── OBWriteFileConsent2.csv │ │ │ ├── OBWriteFileConsentResponse2.csv │ │ │ ├── OBWriteFileResponse1.csv │ │ │ ├── OBWriteFundsConfirmationResponse1.csv │ │ │ ├── OBWriteInternational2.csv │ │ │ ├── OBWriteInternationalConsent2.csv │ │ │ ├── OBWriteInternationalConsentResponse2.csv │ │ │ ├── OBWriteInternationalResponse2.csv │ │ │ ├── OBWriteInternationalScheduled2.csv │ │ │ ├── OBWriteInternationalScheduledConsent2.csv │ │ │ ├── OBWriteInternationalScheduledConsentResponse2.csv │ │ │ ├── OBWriteInternationalScheduledResponse2.csv │ │ │ ├── OBWriteInternationalStandingOrder2.csv │ │ │ ├── OBWriteInternationalStandingOrderConsent2.csv │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse2.csv │ │ │ └── OBWriteInternationalStandingOrderResponse2.csv │ ├── payment-initiation │ │ ├── definitions │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBAuthorisation1.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBBusinessDayConvention1Code.yaml │ │ │ ├── OBCashAccountCreditor1.yaml │ │ │ ├── OBCashAccountCreditor2.yaml │ │ │ ├── OBCashAccountDebtor2.yaml │ │ │ ├── OBCashAccountDebtor3.yaml │ │ │ ├── OBCharge1.yaml │ │ │ ├── OBChargeBearerType1Code.yaml │ │ │ ├── OBDomestic2.yaml │ │ │ ├── OBDomesticScheduled2.yaml │ │ │ ├── OBDomesticStandingOrder2.yaml │ │ │ ├── OBExchangeRate1.yaml │ │ │ ├── OBExchangeRate2.yaml │ │ │ ├── OBExchangeRateType2Code.yaml │ │ │ ├── OBExternalAccountIdentification3Code.yaml │ │ │ ├── OBExternalAuthorisation1Code.yaml │ │ │ ├── OBExternalConsentStatus1Code.yaml │ │ │ ├── OBExternalConsentStatus2Code.yaml │ │ │ ├── OBExternalPaymentContext1Code.yaml │ │ │ ├── OBExternalPermissions2Code.yaml │ │ │ ├── OBExternalStatus1Code.yaml │ │ │ ├── OBExternalStatus2Code.yaml │ │ │ ├── OBFile1.yaml │ │ │ ├── OBFile2.yaml │ │ │ ├── OBFundsConfirmationConsentType1Code.yaml │ │ │ ├── OBInternational2.yaml │ │ │ ├── OBInternationalScheduled1_2.yaml │ │ │ ├── OBInternationalScheduled2.yaml │ │ │ ├── OBInternationalStandingOrder2.yaml │ │ │ ├── OBMultiAuthorisation1.yaml │ │ │ ├── OBPartyIdentification43.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPriority2Code.yaml │ │ │ ├── OBRemittanceInformation1.yaml │ │ │ ├── OBRisk1.yaml │ │ │ ├── OBSupplementaryData1.yaml │ │ │ ├── OBTransactionIndividualStatus1Code.yaml │ │ │ ├── OBWriteDataDomestic2.yaml │ │ │ ├── OBWriteDataDomesticConsent2.yaml │ │ │ ├── OBWriteDataDomesticConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticResponse2.yaml │ │ │ ├── OBWriteDataDomesticScheduled2.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsent2.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticScheduledResponse2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrder2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsent2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderResponse2.yaml │ │ │ ├── OBWriteDataFile2.yaml │ │ │ ├── OBWriteDataFileConsent2.yaml │ │ │ ├── OBWriteDataFileConsentResponse2.yaml │ │ │ ├── OBWriteDataFileResponse1.yaml │ │ │ ├── OBWriteDataFundsConfirmationResponse1.yaml │ │ │ ├── OBWriteDataInternational2.yaml │ │ │ ├── OBWriteDataInternationalConsent2.yaml │ │ │ ├── OBWriteDataInternationalConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalResponse2.yaml │ │ │ ├── OBWriteDataInternationalScheduled2.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsent2.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalScheduledResponse2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrder2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsent2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderResponse2.yaml │ │ │ ├── OBWriteDomestic2.yaml │ │ │ ├── OBWriteDomesticConsent2.yaml │ │ │ ├── OBWriteDomesticConsentResponse2.yaml │ │ │ ├── OBWriteDomesticResponse2.yaml │ │ │ ├── OBWriteDomesticScheduled2.yaml │ │ │ ├── OBWriteDomesticScheduledConsent2.yaml │ │ │ ├── OBWriteDomesticScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDomesticScheduledResponse2.yaml │ │ │ ├── OBWriteDomesticStandingOrder2.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent2.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDomesticStandingOrderResponse2.yaml │ │ │ ├── OBWriteFile2.yaml │ │ │ ├── OBWriteFileConsent2.yaml │ │ │ ├── OBWriteFileConsentResponse2.yaml │ │ │ ├── OBWriteFileResponse1.yaml │ │ │ ├── OBWriteFundsConfirmationResponse1.yaml │ │ │ ├── OBWriteInternational2.yaml │ │ │ ├── OBWriteInternationalConsent2.yaml │ │ │ ├── OBWriteInternationalConsentResponse2.yaml │ │ │ ├── OBWriteInternationalResponse2.yaml │ │ │ ├── OBWriteInternationalScheduled2.yaml │ │ │ ├── OBWriteInternationalScheduledConsent2.yaml │ │ │ ├── OBWriteInternationalScheduledConsentResponse2.yaml │ │ │ ├── OBWriteInternationalScheduledResponse2.yaml │ │ │ ├── OBWriteInternationalStandingOrder2.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent2.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse2.yaml │ │ │ └── OBWriteInternationalStandingOrderResponse2.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── DomesticPaymentId.yaml │ │ │ ├── DomesticScheduledPaymentId.yaml │ │ │ ├── DomesticStandingOrderId.yaml │ │ │ ├── FileParam.yaml │ │ │ ├── FilePaymentId.yaml │ │ │ ├── InternationalPaymentId.yaml │ │ │ ├── InternationalScheduledPaymentId.yaml │ │ │ ├── InternationalStandingOrderPaymentId.yaml │ │ │ ├── OBPaymentSetup1Param.yaml │ │ │ ├── OBWriteDomestic2Param.yaml │ │ │ ├── OBWriteDomesticConsent2Param.yaml │ │ │ ├── OBWriteDomesticScheduled2Param.yaml │ │ │ ├── OBWriteDomesticScheduledConsent2Param.yaml │ │ │ ├── OBWriteDomesticStandingOrder2Param.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent2Param.yaml │ │ │ ├── OBWriteFile2Param.yaml │ │ │ ├── OBWriteFileConsent2Param.yaml │ │ │ ├── OBWriteInternational2Param.yaml │ │ │ ├── OBWriteInternationalConsent2Param.yaml │ │ │ ├── OBWriteInternationalScheduled2Param.yaml │ │ │ ├── OBWriteInternationalScheduledConsent2Param.yaml │ │ │ ├── OBWriteInternationalStandingOrder2Param.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent2Param.yaml │ │ │ ├── OBWriteStandingOrder2Param.yaml │ │ │ ├── OBWriteStandingOrderConsent2Param.yaml │ │ │ ├── x-idempotency-key.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ ├── paths │ │ │ ├── CreateDomesticPaymentConsents.yaml │ │ │ ├── CreateDomesticPayments.yaml │ │ │ ├── CreateDomesticScheduledPaymentConsents.yaml │ │ │ ├── CreateDomesticScheduledPayments.yaml │ │ │ ├── CreateDomesticStandingOrderConsents.yaml │ │ │ ├── CreateDomesticStandingOrders.yaml │ │ │ ├── CreateFilePaymentConsents.yaml │ │ │ ├── CreateFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── CreateFilePayments.yaml │ │ │ ├── CreateInternationalPaymentConsents.yaml │ │ │ ├── CreateInternationalPayments.yaml │ │ │ ├── CreateInternationalScheduledPaymentConsents.yaml │ │ │ ├── CreateInternationalScheduledPayments.yaml │ │ │ ├── CreateInternationalStandingOrderConsents.yaml │ │ │ ├── CreateInternationalStandingOrders.yaml │ │ │ ├── GetDomesticPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticPaymentConsentsConsentIdFundsConfirmation.yaml │ │ │ ├── GetDomesticPaymentsDomesticPaymentId.yaml │ │ │ ├── GetDomesticScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticScheduledPaymentsDomesticScheduledPaymentId.yaml │ │ │ ├── GetDomesticStandingOrderConsentsConsentId.yaml │ │ │ ├── GetDomesticStandingOrdersDomesticStandingOrderId.yaml │ │ │ ├── GetFilePaymentConsentsConsentId.yaml │ │ │ ├── GetFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── GetFilePaymentsFilePaymentId.yaml │ │ │ ├── GetFilePaymentsFilePaymentIdReportFile.yaml │ │ │ ├── GetInternationalPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalPaymentConsentsConsentIdFundsConfirmation.yaml │ │ │ ├── GetInternationalPaymentsInternationalPaymentId.yaml │ │ │ ├── GetInternationalScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalScheduledPaymentsInternationalScheduledPaymentId.yaml │ │ │ ├── GetInternationalStandingOrderConsentsConsentId.yaml │ │ │ └── GetInternationalStandingOrdersInternationalStandingOrderPaymentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200ConsentsRead.yaml │ │ │ ├── 200DomesticPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ │ ├── 200DomesticPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticPaymentConsentsRead.yaml │ │ │ ├── 200DomesticPaymentsDomesticPaymentIdRead.yaml │ │ │ ├── 200DomesticPaymentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsDomesticScheduledPaymentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsRead.yaml │ │ │ ├── 200DomesticStandingOrdersDomesticStandingOrderIdRead.yaml │ │ │ ├── 200DomesticStandingOrdersRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileCreated.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdRead.yaml │ │ │ ├── 200FilePaymentConsentsCreated.yaml │ │ │ ├── 200FilePaymentConsentsRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdReportFileRead.yaml │ │ │ ├── 200FilePaymentsRead.yaml │ │ │ ├── 200InternationalPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ │ ├── 200InternationalPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalPaymentConsentsRead.yaml │ │ │ ├── 200InternationalPaymentsInternationalPaymentIdRead.yaml │ │ │ ├── 200InternationalPaymentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsInternationalScheduledPaymentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsRead.yaml │ │ │ ├── 200InternationalStandingOrdersInternationalStandingOrderPaymentIdRead.yaml │ │ │ ├── 200InternationalStandingOrdersRead.yaml │ │ │ ├── 200PaymentConsentsCreated.yaml │ │ │ ├── 200PaymentConsentsRead.yaml │ │ │ ├── 200PaymentsRead.yaml │ │ │ ├── 201ConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentsCreated.yaml │ │ │ ├── 201DomesticStandingOrderConsentsCreated.yaml │ │ │ ├── 201DomesticStandingOrdersCreated.yaml │ │ │ ├── 201FilePaymentConsentsCreated.yaml │ │ │ ├── 201FilePaymentsCreated.yaml │ │ │ ├── 201InternationalPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalPaymentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentsCreated.yaml │ │ │ ├── 201InternationalStandingOrderConsentsCreated.yaml │ │ │ ├── 201InternationalStandingOrdersCreated.yaml │ │ │ └── 201PaymentsCreated.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ └── readwrite │ │ ├── definitions │ │ ├── Error.yaml │ │ ├── File.yaml │ │ ├── ISODateTime.yaml │ │ ├── Links.yaml │ │ ├── Meta.yaml │ │ ├── OBBCAData1.yaml │ │ ├── OBError1.yaml │ │ ├── OBErrorResponse1.yaml │ │ ├── OBPCAData1.yaml │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ ├── AuthorizationParam.yaml │ │ ├── x-customer-user-agent-Param.yaml │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ ├── x-fapi-financial-id-Param.yaml │ │ ├── x-fapi-interaction-id-Param.yaml │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ ├── 400ErrorResponse.yaml │ │ ├── 401ErrorResponse.yaml │ │ ├── 403ErrorResponse.yaml │ │ ├── 404ErrorResponse.yaml │ │ ├── 405ErrorResponse.yaml │ │ ├── 406ErrorResponse.yaml │ │ ├── 415ErrorResponse.yaml │ │ ├── 429ErrorResponse.yaml │ │ └── 500ErrorResponse.yaml ├── v3.1-draft3 │ ├── account-info │ │ ├── definitions │ │ │ ├── AccountId.yaml │ │ │ ├── OBAccount3.yaml │ │ │ ├── OBAccount3Basic.yaml │ │ │ ├── OBAccount3Detail.yaml │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBBCAData1.yaml │ │ │ ├── OBBalanceType1Code.yaml │ │ │ ├── OBBankTransactionCodeStructure1.yaml │ │ │ ├── OBBeneficiary2.yaml │ │ │ ├── OBBeneficiary2Basic.yaml │ │ │ ├── OBBeneficiary2Detail.yaml │ │ │ ├── OBBeneficiary3.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification5.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification6.yaml │ │ │ ├── OBCashAccount3.yaml │ │ │ ├── OBCashAccount5.yaml │ │ │ ├── OBCashAccount6.yaml │ │ │ ├── OBCashBalance1.yaml │ │ │ ├── OBCreditDebitCode.yaml │ │ │ ├── OBCreditLine1.yaml │ │ │ ├── OBCurrencyExchange5.yaml │ │ │ ├── OBDirectDebit1.yaml │ │ │ ├── OBEntryStatus1Code.yaml │ │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ │ ├── OBExternalAccountSubType1Code.yaml │ │ │ ├── OBExternalAccountType1Code.yaml │ │ │ ├── OBExternalCardAuthorisationType1Code.yaml │ │ │ ├── OBExternalCardSchemeType1Code.yaml │ │ │ ├── OBExternalDirectDebitStatus1Code.yaml │ │ │ ├── OBExternalFinancialInstitutionIdentification4Code.yaml │ │ │ ├── OBExternalLimitType1Code.yaml │ │ │ ├── OBExternalOfferType1Code.yaml │ │ │ ├── OBExternalPartyType1Code.yaml │ │ │ ├── OBExternalPermissions1Code.yaml │ │ │ ├── OBExternalProductType1Code.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBExternalScheduleType1Code.yaml │ │ │ ├── OBExternalStandingOrderStatus1Code.yaml │ │ │ ├── OBExternalStatementAmountType1Code.yaml │ │ │ ├── OBExternalStatementBenefitType1Code.yaml │ │ │ ├── OBExternalStatementDateTimeType1Code.yaml │ │ │ ├── OBExternalStatementFeeType1Code.yaml │ │ │ ├── OBExternalStatementInterestType1Code.yaml │ │ │ ├── OBExternalStatementRateType1Code.yaml │ │ │ ├── OBExternalStatementType1Code.yaml │ │ │ ├── OBExternalStatementValueType1Code.yaml │ │ │ ├── OBMerchantDetails1.yaml │ │ │ ├── OBOffer1.yaml │ │ │ ├── OBOtherProductType1.yaml │ │ │ ├── OBPCAData1.yaml │ │ │ ├── OBParty1.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPostalAddress8.yaml │ │ │ ├── OBProduct2.yaml │ │ │ ├── OBReadAccount3.yaml │ │ │ ├── OBReadBalance1.yaml │ │ │ ├── OBReadBeneficiary2.yaml │ │ │ ├── OBReadBeneficiary3.yaml │ │ │ ├── OBReadConsent1.yaml │ │ │ ├── OBReadConsentResponse1.yaml │ │ │ ├── OBReadData1.yaml │ │ │ ├── OBReadDirectDebit1.yaml │ │ │ ├── OBReadOffer1.yaml │ │ │ ├── OBReadParty1.yaml │ │ │ ├── OBReadProduct2.yaml │ │ │ ├── OBReadScheduledPayment2.yaml │ │ │ ├── OBReadStandingOrder4.yaml │ │ │ ├── OBReadStatement1.yaml │ │ │ ├── OBReadTransaction4.yaml │ │ │ ├── OBScheduledPayment2.yaml │ │ │ ├── OBScheduledPayment2Basic.yaml │ │ │ ├── OBScheduledPayment2Detail.yaml │ │ │ ├── OBStandingOrder4.yaml │ │ │ ├── OBStandingOrder4Basic.yaml │ │ │ ├── OBStandingOrder4Detail.yaml │ │ │ ├── OBStatement1.yaml │ │ │ ├── OBStatement1Basic.yaml │ │ │ ├── OBStatement1Detail.yaml │ │ │ ├── OBStatementAmount1.yaml │ │ │ ├── OBStatementBenefit1.yaml │ │ │ ├── OBStatementDateTime1.yaml │ │ │ ├── OBStatementFee1.yaml │ │ │ ├── OBStatementInterest1.yaml │ │ │ ├── OBStatementRate1.yaml │ │ │ ├── OBStatementValue1.yaml │ │ │ ├── OBSupplementaryData1.yaml │ │ │ ├── OBTransaction4.yaml │ │ │ ├── OBTransaction4Basic.yaml │ │ │ ├── OBTransaction4Detail.yaml │ │ │ ├── OBTransactionCardInstrument1.yaml │ │ │ ├── OBTransactionCashBalance.yaml │ │ │ └── TransactionInformation.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── AccountId.yaml │ │ │ ├── AccountIdParam.yaml │ │ │ ├── AccountRequestIdParam.yaml │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── ConsentId.yaml │ │ │ ├── FromBookingDateTimeParam.yaml │ │ │ ├── FromStatementDateTimeParam.yaml │ │ │ ├── OBReadConsent1Param.yaml │ │ │ ├── OBReadRequest1Param.yaml │ │ │ ├── StatementId.yaml │ │ │ ├── StatementIdParam.yaml │ │ │ ├── ToBookingDateTimeParam.yaml │ │ │ ├── ToStatementDateTimeParam.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateAccountAccessConsents.yaml │ │ │ ├── CreateAccountRequest.yaml │ │ │ ├── DeleteAccountAccessConsentsConsentId.yaml │ │ │ ├── DeleteAccountRequest.yaml │ │ │ ├── GetAccountAccessConsentsConsentId.yaml │ │ │ ├── GetAccounts.yaml │ │ │ ├── GetAccountsAccountId.yaml │ │ │ ├── GetAccountsAccountIdBalances.yaml │ │ │ ├── GetAccountsAccountIdBeneficiaries.yaml │ │ │ ├── GetAccountsAccountIdDirectDebits.yaml │ │ │ ├── GetAccountsAccountIdOffers.yaml │ │ │ ├── GetAccountsAccountIdParty.yaml │ │ │ ├── GetAccountsAccountIdProduct.yaml │ │ │ ├── GetAccountsAccountIdScheduledPayments.yaml │ │ │ ├── GetAccountsAccountIdStandingOrders.yaml │ │ │ ├── GetAccountsAccountIdStatements.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementId.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdFile.yaml │ │ │ ├── GetAccountsAccountIdStatementsStatementIdTransactions.yaml │ │ │ ├── GetAccountsAccountIdTransactions.yaml │ │ │ ├── GetBalances.yaml │ │ │ ├── GetBeneficiaries.yaml │ │ │ ├── GetDirectDebits.yaml │ │ │ ├── GetOffers.yaml │ │ │ ├── GetParty.yaml │ │ │ ├── GetProducts.yaml │ │ │ ├── GetScheduledPayments.yaml │ │ │ ├── GetStandingOrders.yaml │ │ │ ├── GetStatements.yaml │ │ │ └── GetTransactions.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200AccountAccessConsentsConsentIdRead.yaml │ │ │ ├── 200AccountAccessConsentsDeleted.yaml │ │ │ ├── 200AccountAccessConsentsRead.yaml │ │ │ ├── 200AccountBalancesRead.yaml │ │ │ ├── 200AccountBeneficiariesRead.yaml │ │ │ ├── 200AccountDirectDebitsRead.yaml │ │ │ ├── 200AccountOffersRead.yaml │ │ │ ├── 200AccountPartyRead.yaml │ │ │ ├── 200AccountProductRead.yaml │ │ │ ├── 200AccountRead.yaml │ │ │ ├── 200AccountRequestRead.yaml │ │ │ ├── 200AccountScheduledPaymentsRead.yaml │ │ │ ├── 200AccountStandingOrdersRead.yaml │ │ │ ├── 200AccountStatementFileRead.yaml │ │ │ ├── 200AccountStatementsRead.yaml │ │ │ ├── 200AccountTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdBalancesRead.yaml │ │ │ ├── 200AccountsAccountIdBeneficiariesRead.yaml │ │ │ ├── 200AccountsAccountIdDirectDebitsRead.yaml │ │ │ ├── 200AccountsAccountIdOffersRead.yaml │ │ │ ├── 200AccountsAccountIdPartyRead.yaml │ │ │ ├── 200AccountsAccountIdProductRead.yaml │ │ │ ├── 200AccountsAccountIdRead.yaml │ │ │ ├── 200AccountsAccountIdScheduledPaymentsRead.yaml │ │ │ ├── 200AccountsAccountIdStandingOrdersRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdFileRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdRead.yaml │ │ │ ├── 200AccountsAccountIdStatementsStatementIdTransactionsRead.yaml │ │ │ ├── 200AccountsAccountIdTransactionsRead.yaml │ │ │ ├── 200AccountsRead.yaml │ │ │ ├── 200BalancesRead.yaml │ │ │ ├── 200BeneficiariesRead.yaml │ │ │ ├── 200DirectDebitsRead.yaml │ │ │ ├── 200OffersRead.yaml │ │ │ ├── 200PartyRead.yaml │ │ │ ├── 200ProductsRead.yaml │ │ │ ├── 200ScheduledPaymentsRead.yaml │ │ │ ├── 200StandingOrdersRead.yaml │ │ │ ├── 200StatementsRead.yaml │ │ │ ├── 200TransactionsRead.yaml │ │ │ ├── 201AccountAccessConsentsCreated.yaml │ │ │ ├── 201AccountRequestCreated.yaml │ │ │ ├── 204AccountAccessConsentsConsentIdDeleted.yaml │ │ │ ├── 204AccountAccessConsentsDeleted.yaml │ │ │ └── 204AccountRequestDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── confirmation-funds │ │ ├── definitions │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBCashAccountDebtor4.yaml │ │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ │ ├── OBExternalRequestStatus1Code.yaml │ │ │ ├── OBFundsConfirmation1.yaml │ │ │ ├── OBFundsConfirmationConsent1.yaml │ │ │ ├── OBFundsConfirmationConsentData1.yaml │ │ │ ├── OBFundsConfirmationConsentDataResponse1.yaml │ │ │ ├── OBFundsConfirmationConsentResponse1.yaml │ │ │ ├── OBFundsConfirmationData1.yaml │ │ │ ├── OBFundsConfirmationDataResponse1.yaml │ │ │ └── OBFundsConfirmationResponse1.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── OBFundsConfirmation1Param.yaml │ │ │ ├── OBFundsConfirmationConsent1Param.yaml │ │ │ └── x-idempotency-key.yaml │ │ ├── paths │ │ │ ├── CreateFundsConfirmationConsents.yaml │ │ │ ├── CreateFundsConfirmations.yaml │ │ │ ├── DeleteFundsConfirmationConsentsConsentId.yaml │ │ │ └── GetFundsConfirmationConsentsConsentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200FundsConfirmationConsentRead.yaml │ │ │ ├── 200FundsConfirmationConsentsConsentIdRead.yaml │ │ │ ├── 201FundsConfirmationConsentCreated.yaml │ │ │ ├── 201FundsConfirmationConsentsCreated.yaml │ │ │ ├── 201FundsConfirmationCreated.yaml │ │ │ ├── 201FundsConfirmationsCreated.yaml │ │ │ └── 204FundsConfirmationConsentsConsentIdDeleted.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ ├── data_definition │ │ ├── account-info │ │ │ ├── OBReadAccount3.csv │ │ │ ├── OBReadBalance1.csv │ │ │ ├── OBReadBeneficiary2.csv │ │ │ ├── OBReadBeneficiary3.csv │ │ │ ├── OBReadConsent1.csv │ │ │ ├── OBReadConsentResponse1.csv │ │ │ ├── OBReadDirectDebit1.csv │ │ │ ├── OBReadOffer1.csv │ │ │ ├── OBReadParty1.csv │ │ │ ├── OBReadProduct2.csv │ │ │ ├── OBReadScheduledPayment2.csv │ │ │ ├── OBReadStandingOrder4.csv │ │ │ ├── OBReadStatement1.csv │ │ │ ├── OBReadTransaction4.csv │ │ │ └── Permissions.csv │ │ ├── ainfobca.2.2.0.swagger.json │ │ ├── ainfopca.2.2.0.swagger.json │ │ ├── confirmation-funds │ │ │ ├── OBFundsConfirmation1.csv │ │ │ ├── OBFundsConfirmationConsent1.csv │ │ │ ├── OBFundsConfirmationConsentResponse1.csv │ │ │ └── OBFundsConfirmationResponse1.csv │ │ ├── event-notifications │ │ │ ├── OBCallbackUrl1.csv │ │ │ ├── OBCallbackUrlResponse1.csv │ │ │ ├── OBCallbackUrlsResponse1.csv │ │ │ ├── OBErrorResponse1.csv │ │ │ └── OBEventNotification1.csv │ │ └── payment-initiation │ │ │ ├── OBWriteDomestic2.csv │ │ │ ├── OBWriteDomesticConsent2.csv │ │ │ ├── OBWriteDomesticConsentResponse2.csv │ │ │ ├── OBWriteDomesticResponse2.csv │ │ │ ├── OBWriteDomesticScheduled2.csv │ │ │ ├── OBWriteDomesticScheduledConsent2.csv │ │ │ ├── OBWriteDomesticScheduledConsentResponse2.csv │ │ │ ├── OBWriteDomesticScheduledResponse2.csv │ │ │ ├── OBWriteDomesticStandingOrder2.csv │ │ │ ├── OBWriteDomesticStandingOrderConsent2.csv │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse2.csv │ │ │ ├── OBWriteDomesticStandingOrderResponse2.csv │ │ │ ├── OBWriteFile2.csv │ │ │ ├── OBWriteFileConsent2.csv │ │ │ ├── OBWriteFileConsentResponse2.csv │ │ │ ├── OBWriteFileResponse2.csv │ │ │ ├── OBWriteFundsConfirmationResponse1.csv │ │ │ ├── OBWriteInternational2.csv │ │ │ ├── OBWriteInternationalConsent2.csv │ │ │ ├── OBWriteInternationalConsentResponse2.csv │ │ │ ├── OBWriteInternationalResponse2.csv │ │ │ ├── OBWriteInternationalScheduled2.csv │ │ │ ├── OBWriteInternationalScheduledConsent2.csv │ │ │ ├── OBWriteInternationalScheduledConsentResponse2.csv │ │ │ ├── OBWriteInternationalScheduledResponse2.csv │ │ │ ├── OBWriteInternationalStandingOrder2.csv │ │ │ ├── OBWriteInternationalStandingOrderConsent2.csv │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse2.csv │ │ │ └── OBWriteInternationalStandingOrderResponse2.csv │ ├── payment-initiation │ │ ├── definitions │ │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ │ ├── OBAddressTypeCode.yaml │ │ │ ├── OBAuthorisation1.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification3.yaml │ │ │ ├── OBBranchAndFinancialInstitutionIdentification6.yaml │ │ │ ├── OBBusinessDayConvention1Code.yaml │ │ │ ├── OBCashAccountCreditor1.yaml │ │ │ ├── OBCashAccountCreditor3.yaml │ │ │ ├── OBCashAccountDebtor2.yaml │ │ │ ├── OBCashAccountDebtor4.yaml │ │ │ ├── OBCharge2.yaml │ │ │ ├── OBChargeBearerType1Code.yaml │ │ │ ├── OBDomestic2.yaml │ │ │ ├── OBDomesticScheduled2.yaml │ │ │ ├── OBDomesticStandingOrder2.yaml │ │ │ ├── OBExchangeRate1.yaml │ │ │ ├── OBExchangeRate2.yaml │ │ │ ├── OBExchangeRateType2Code.yaml │ │ │ ├── OBExternalAccountIdentification3Code.yaml │ │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ │ ├── OBExternalAuthorisation1Code.yaml │ │ │ ├── OBExternalConsentStatus1Code.yaml │ │ │ ├── OBExternalConsentStatus2Code.yaml │ │ │ ├── OBExternalFileType1Code.yaml │ │ │ ├── OBExternalFinancialInstitutionIdentification4Code.yaml │ │ │ ├── OBExternalLocalInstrument1Code.yaml │ │ │ ├── OBExternalPaymentChargeType1Code.yaml │ │ │ ├── OBExternalPaymentContext1Code.yaml │ │ │ ├── OBExternalPermissions2Code.yaml │ │ │ ├── OBExternalPurpose1Code1.yaml │ │ │ ├── OBExternalStatus1Code.yaml │ │ │ ├── OBExternalStatus2Code.yaml │ │ │ ├── OBFile2.yaml │ │ │ ├── OBInternational2.yaml │ │ │ ├── OBInternationalScheduled1_2.yaml │ │ │ ├── OBInternationalScheduled2.yaml │ │ │ ├── OBInternationalStandingOrder2.yaml │ │ │ ├── OBMultiAuthorisation1.yaml │ │ │ ├── OBPartyIdentification43.yaml │ │ │ ├── OBPostalAddress6.yaml │ │ │ ├── OBPriority2Code.yaml │ │ │ ├── OBRemittanceInformation1.yaml │ │ │ ├── OBRisk1.yaml │ │ │ ├── OBSupplementaryData1.yaml │ │ │ ├── OBTransactionIndividualStatus1Code.yaml │ │ │ ├── OBWriteDataDomestic2.yaml │ │ │ ├── OBWriteDataDomesticConsent2.yaml │ │ │ ├── OBWriteDataDomesticConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticResponse2.yaml │ │ │ ├── OBWriteDataDomesticScheduled2.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsent2.yaml │ │ │ ├── OBWriteDataDomesticScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticScheduledResponse2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrder2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsent2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDataDomesticStandingOrderResponse2.yaml │ │ │ ├── OBWriteDataFile2.yaml │ │ │ ├── OBWriteDataFileConsent2.yaml │ │ │ ├── OBWriteDataFileConsentResponse2.yaml │ │ │ ├── OBWriteDataFileResponse2.yaml │ │ │ ├── OBWriteDataFundsConfirmationResponse1.yaml │ │ │ ├── OBWriteDataInternational2.yaml │ │ │ ├── OBWriteDataInternationalConsent2.yaml │ │ │ ├── OBWriteDataInternationalConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalResponse2.yaml │ │ │ ├── OBWriteDataInternationalScheduled2.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsent2.yaml │ │ │ ├── OBWriteDataInternationalScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalScheduledResponse2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrder2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsent2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDataInternationalStandingOrderResponse2.yaml │ │ │ ├── OBWriteDomestic2.yaml │ │ │ ├── OBWriteDomesticConsent2.yaml │ │ │ ├── OBWriteDomesticConsentResponse2.yaml │ │ │ ├── OBWriteDomesticResponse2.yaml │ │ │ ├── OBWriteDomesticScheduled2.yaml │ │ │ ├── OBWriteDomesticScheduledConsent2.yaml │ │ │ ├── OBWriteDomesticScheduledConsentResponse2.yaml │ │ │ ├── OBWriteDomesticScheduledResponse2.yaml │ │ │ ├── OBWriteDomesticStandingOrder2.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent2.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsentResponse2.yaml │ │ │ ├── OBWriteDomesticStandingOrderResponse2.yaml │ │ │ ├── OBWriteFile2.yaml │ │ │ ├── OBWriteFileConsent2.yaml │ │ │ ├── OBWriteFileConsentResponse2.yaml │ │ │ ├── OBWriteFileResponse2.yaml │ │ │ ├── OBWriteFundsConfirmationResponse1.yaml │ │ │ ├── OBWriteInternational2.yaml │ │ │ ├── OBWriteInternationalConsent2.yaml │ │ │ ├── OBWriteInternationalConsentResponse2.yaml │ │ │ ├── OBWriteInternationalResponse2.yaml │ │ │ ├── OBWriteInternationalScheduled2.yaml │ │ │ ├── OBWriteInternationalScheduledConsent2.yaml │ │ │ ├── OBWriteInternationalScheduledConsentResponse2.yaml │ │ │ ├── OBWriteInternationalScheduledResponse2.yaml │ │ │ ├── OBWriteInternationalStandingOrder2.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent2.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsentResponse2.yaml │ │ │ └── OBWriteInternationalStandingOrderResponse2.yaml │ │ ├── index.yaml │ │ ├── parameters │ │ │ ├── ConsentId.yaml │ │ │ ├── DomesticPaymentId.yaml │ │ │ ├── DomesticScheduledPaymentId.yaml │ │ │ ├── DomesticStandingOrderId.yaml │ │ │ ├── FileParam.yaml │ │ │ ├── FilePaymentId.yaml │ │ │ ├── InternationalPaymentId.yaml │ │ │ ├── InternationalScheduledPaymentId.yaml │ │ │ ├── InternationalStandingOrderPaymentId.yaml │ │ │ ├── OBPaymentSetup1Param.yaml │ │ │ ├── OBWriteDomestic2Param.yaml │ │ │ ├── OBWriteDomesticConsent2Param.yaml │ │ │ ├── OBWriteDomesticScheduled2Param.yaml │ │ │ ├── OBWriteDomesticScheduledConsent2Param.yaml │ │ │ ├── OBWriteDomesticStandingOrder2Param.yaml │ │ │ ├── OBWriteDomesticStandingOrderConsent2Param.yaml │ │ │ ├── OBWriteFile2Param.yaml │ │ │ ├── OBWriteFileConsent2Param.yaml │ │ │ ├── OBWriteInternational2Param.yaml │ │ │ ├── OBWriteInternationalConsent2Param.yaml │ │ │ ├── OBWriteInternationalScheduled2Param.yaml │ │ │ ├── OBWriteInternationalScheduledConsent2Param.yaml │ │ │ ├── OBWriteInternationalStandingOrder2Param.yaml │ │ │ ├── OBWriteInternationalStandingOrderConsent2Param.yaml │ │ │ ├── OBWriteStandingOrder2Param.yaml │ │ │ ├── OBWriteStandingOrderConsent2Param.yaml │ │ │ ├── x-idempotency-key.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ ├── paths │ │ │ ├── CreateDomesticPaymentConsents.yaml │ │ │ ├── CreateDomesticPayments.yaml │ │ │ ├── CreateDomesticScheduledPaymentConsents.yaml │ │ │ ├── CreateDomesticScheduledPayments.yaml │ │ │ ├── CreateDomesticStandingOrderConsents.yaml │ │ │ ├── CreateDomesticStandingOrders.yaml │ │ │ ├── CreateFilePaymentConsents.yaml │ │ │ ├── CreateFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── CreateFilePayments.yaml │ │ │ ├── CreateInternationalPaymentConsents.yaml │ │ │ ├── CreateInternationalPayments.yaml │ │ │ ├── CreateInternationalScheduledPaymentConsents.yaml │ │ │ ├── CreateInternationalScheduledPayments.yaml │ │ │ ├── CreateInternationalStandingOrderConsents.yaml │ │ │ ├── CreateInternationalStandingOrders.yaml │ │ │ ├── GetDomesticPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticPaymentConsentsConsentIdFundsConfirmation.yaml │ │ │ ├── GetDomesticPaymentsDomesticPaymentId.yaml │ │ │ ├── GetDomesticScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetDomesticScheduledPaymentsDomesticScheduledPaymentId.yaml │ │ │ ├── GetDomesticStandingOrderConsentsConsentId.yaml │ │ │ ├── GetDomesticStandingOrdersDomesticStandingOrderId.yaml │ │ │ ├── GetFilePaymentConsentsConsentId.yaml │ │ │ ├── GetFilePaymentConsentsConsentIdFile.yaml │ │ │ ├── GetFilePaymentsFilePaymentId.yaml │ │ │ ├── GetFilePaymentsFilePaymentIdReportFile.yaml │ │ │ ├── GetInternationalPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalPaymentConsentsConsentIdFundsConfirmation.yaml │ │ │ ├── GetInternationalPaymentsInternationalPaymentId.yaml │ │ │ ├── GetInternationalScheduledPaymentConsentsConsentId.yaml │ │ │ ├── GetInternationalScheduledPaymentsInternationalScheduledPaymentId.yaml │ │ │ ├── GetInternationalStandingOrderConsentsConsentId.yaml │ │ │ └── GetInternationalStandingOrdersInternationalStandingOrderPaymentId.yaml │ │ ├── readwrite │ │ │ ├── definitions │ │ │ │ ├── Error.yaml │ │ │ │ ├── File.yaml │ │ │ │ ├── ISODateTime.yaml │ │ │ │ ├── Links.yaml │ │ │ │ ├── Meta.yaml │ │ │ │ ├── OBError1.yaml │ │ │ │ ├── OBErrorResponse1.yaml │ │ │ │ └── OBRisk2.yaml │ │ │ ├── parameters │ │ │ │ ├── AuthorizationParam.yaml │ │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ │ └── x-jws-signature-Param.yaml │ │ │ └── responses │ │ │ │ ├── 400ErrorResponse.yaml │ │ │ │ ├── 401ErrorResponse.yaml │ │ │ │ ├── 403ErrorResponse.yaml │ │ │ │ ├── 405ErrorResponse.yaml │ │ │ │ ├── 406ErrorResponse.yaml │ │ │ │ ├── 429ErrorResponse.yaml │ │ │ │ └── 500ErrorResponse.yaml │ │ ├── responses │ │ │ ├── 200ConsentsRead.yaml │ │ │ ├── 200DomesticPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ │ ├── 200DomesticPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticPaymentConsentsRead.yaml │ │ │ ├── 200DomesticPaymentsDomesticPaymentIdRead.yaml │ │ │ ├── 200DomesticPaymentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentConsentsRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsDomesticScheduledPaymentIdRead.yaml │ │ │ ├── 200DomesticScheduledPaymentsRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200DomesticStandingOrderConsentsRead.yaml │ │ │ ├── 200DomesticStandingOrdersDomesticStandingOrderIdRead.yaml │ │ │ ├── 200DomesticStandingOrdersRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileCreated.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdFileRead.yaml │ │ │ ├── 200FilePaymentConsentsConsentIdRead.yaml │ │ │ ├── 200FilePaymentConsentsCreated.yaml │ │ │ ├── 200FilePaymentConsentsRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdRead.yaml │ │ │ ├── 200FilePaymentsFilePaymentIdReportFileRead.yaml │ │ │ ├── 200FilePaymentsRead.yaml │ │ │ ├── 200InternationalPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ │ ├── 200InternationalPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalPaymentConsentsRead.yaml │ │ │ ├── 200InternationalPaymentsInternationalPaymentIdRead.yaml │ │ │ ├── 200InternationalPaymentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentConsentsRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsInternationalScheduledPaymentIdRead.yaml │ │ │ ├── 200InternationalScheduledPaymentsRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsConsentIdRead.yaml │ │ │ ├── 200InternationalStandingOrderConsentsRead.yaml │ │ │ ├── 200InternationalStandingOrdersInternationalStandingOrderPaymentIdRead.yaml │ │ │ ├── 200InternationalStandingOrdersRead.yaml │ │ │ ├── 200PaymentConsentsCreated.yaml │ │ │ ├── 200PaymentConsentsRead.yaml │ │ │ ├── 200PaymentsRead.yaml │ │ │ ├── 201ConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticPaymentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201DomesticScheduledPaymentsCreated.yaml │ │ │ ├── 201DomesticStandingOrderConsentsCreated.yaml │ │ │ ├── 201DomesticStandingOrdersCreated.yaml │ │ │ ├── 201FilePaymentConsentsCreated.yaml │ │ │ ├── 201FilePaymentsCreated.yaml │ │ │ ├── 201InternationalPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalPaymentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentConsentsCreated.yaml │ │ │ ├── 201InternationalScheduledPaymentsCreated.yaml │ │ │ ├── 201InternationalStandingOrderConsentsCreated.yaml │ │ │ ├── 201InternationalStandingOrdersCreated.yaml │ │ │ └── 201PaymentsCreated.yaml │ │ └── securityDefinitions │ │ │ ├── PSUOAuth2Security.yaml │ │ │ └── TPPOAuth2Security.yaml │ └── readwrite │ │ ├── definitions │ │ ├── Error.yaml │ │ ├── File.yaml │ │ ├── ISODateTime.yaml │ │ ├── Links.yaml │ │ ├── Meta.yaml │ │ ├── OBBCAData1.yaml │ │ ├── OBError1.yaml │ │ ├── OBErrorResponse1.yaml │ │ ├── OBPCAData1.yaml │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ ├── AuthorizationParam.yaml │ │ ├── x-customer-user-agent-Param.yaml │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ ├── x-fapi-financial-id-Param.yaml │ │ ├── x-fapi-interaction-id-Param.yaml │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ ├── 400ErrorResponse.yaml │ │ ├── 401ErrorResponse.yaml │ │ ├── 403ErrorResponse.yaml │ │ ├── 404ErrorResponse.yaml │ │ ├── 405ErrorResponse.yaml │ │ ├── 406ErrorResponse.yaml │ │ ├── 415ErrorResponse.yaml │ │ ├── 429ErrorResponse.yaml │ │ └── 500ErrorResponse.yaml └── v3.1-draft4 │ ├── account-info │ ├── definitions │ │ ├── AccountId.yaml │ │ ├── OBAccount3.yaml │ │ ├── OBAccount3Basic.yaml │ │ ├── OBAccount3Detail.yaml │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ ├── OBAddressTypeCode.yaml │ │ ├── OBBCAData1.yaml │ │ ├── OBBalanceType1Code.yaml │ │ ├── OBBankTransactionCodeStructure1.yaml │ │ ├── OBBeneficiary3.yaml │ │ ├── OBBeneficiary3Basic.yaml │ │ ├── OBBeneficiary3Detail.yaml │ │ ├── OBBranchAndFinancialInstitutionIdentification5.yaml │ │ ├── OBBranchAndFinancialInstitutionIdentification6.yaml │ │ ├── OBCashAccount5.yaml │ │ ├── OBCashAccount6.yaml │ │ ├── OBCashBalance1.yaml │ │ ├── OBCreditDebitCode.yaml │ │ ├── OBCreditLine1.yaml │ │ ├── OBCurrencyExchange5.yaml │ │ ├── OBDirectDebit1.yaml │ │ ├── OBEntryStatus1Code.yaml │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ ├── OBExternalAccountSubType1Code.yaml │ │ ├── OBExternalAccountType1Code.yaml │ │ ├── OBExternalCardAuthorisationType1Code.yaml │ │ ├── OBExternalCardSchemeType1Code.yaml │ │ ├── OBExternalDirectDebitStatus1Code.yaml │ │ ├── OBExternalFinancialInstitutionIdentification4Code.yaml │ │ ├── OBExternalLimitType1Code.yaml │ │ ├── OBExternalOfferType1Code.yaml │ │ ├── OBExternalPartyType1Code.yaml │ │ ├── OBExternalPermissions1Code.yaml │ │ ├── OBExternalProductType1Code.yaml │ │ ├── OBExternalRequestStatus1Code.yaml │ │ ├── OBExternalScheduleType1Code.yaml │ │ ├── OBExternalStandingOrderStatus1Code.yaml │ │ ├── OBExternalStatementAmountType1Code.yaml │ │ ├── OBExternalStatementBenefitType1Code.yaml │ │ ├── OBExternalStatementDateTimeType1Code.yaml │ │ ├── OBExternalStatementFeeType1Code.yaml │ │ ├── OBExternalStatementInterestType1Code.yaml │ │ ├── OBExternalStatementRateType1Code.yaml │ │ ├── OBExternalStatementType1Code.yaml │ │ ├── OBExternalStatementValueType1Code.yaml │ │ ├── OBMerchantDetails1.yaml │ │ ├── OBOffer1.yaml │ │ ├── OBOtherProductType1.yaml │ │ ├── OBPCAData1.yaml │ │ ├── OBParty1.yaml │ │ ├── OBPostalAddress6.yaml │ │ ├── OBPostalAddress8.yaml │ │ ├── OBProduct2.yaml │ │ ├── OBReadAccount3.yaml │ │ ├── OBReadBalance1.yaml │ │ ├── OBReadBeneficiary3.yaml │ │ ├── OBReadConsent1.yaml │ │ ├── OBReadConsentResponse1.yaml │ │ ├── OBReadData1.yaml │ │ ├── OBReadDirectDebit1.yaml │ │ ├── OBReadOffer1.yaml │ │ ├── OBReadParty1.yaml │ │ ├── OBReadProduct2.yaml │ │ ├── OBReadScheduledPayment2.yaml │ │ ├── OBReadStandingOrder4.yaml │ │ ├── OBReadStatement1.yaml │ │ ├── OBReadTransaction4.yaml │ │ ├── OBScheduledPayment2.yaml │ │ ├── OBScheduledPayment2Basic.yaml │ │ ├── OBScheduledPayment2Detail.yaml │ │ ├── OBStandingOrder4.yaml │ │ ├── OBStandingOrder4Basic.yaml │ │ ├── OBStandingOrder4Detail.yaml │ │ ├── OBStatement1.yaml │ │ ├── OBStatement1Basic.yaml │ │ ├── OBStatement1Detail.yaml │ │ ├── OBStatementAmount1.yaml │ │ ├── OBStatementBenefit1.yaml │ │ ├── OBStatementDateTime1.yaml │ │ ├── OBStatementFee1.yaml │ │ ├── OBStatementInterest1.yaml │ │ ├── OBStatementRate1.yaml │ │ ├── OBStatementValue1.yaml │ │ ├── OBSupplementaryData1.yaml │ │ ├── OBTransaction4.yaml │ │ ├── OBTransaction4Basic.yaml │ │ ├── OBTransaction4Detail.yaml │ │ ├── OBTransactionCardInstrument1.yaml │ │ ├── OBTransactionCashBalance.yaml │ │ └── TransactionInformation.yaml │ ├── index.yaml │ ├── parameters │ │ ├── AccountId.yaml │ │ ├── AccountIdParam.yaml │ │ ├── AccountRequestIdParam.yaml │ │ ├── AuthorizationParam.yaml │ │ ├── ConsentId.yaml │ │ ├── FromBookingDateTimeParam.yaml │ │ ├── FromStatementDateTimeParam.yaml │ │ ├── OBReadConsent1Param.yaml │ │ ├── OBReadRequest1Param.yaml │ │ ├── StatementId.yaml │ │ ├── StatementIdParam.yaml │ │ ├── ToBookingDateTimeParam.yaml │ │ ├── ToStatementDateTimeParam.yaml │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ ├── x-fapi-financial-id-Param.yaml │ │ ├── x-fapi-interaction-id-Param.yaml │ │ └── x-idempotency-key.yaml │ ├── paths │ │ ├── CreateAccountAccessConsents.yaml │ │ ├── CreateAccountRequest.yaml │ │ ├── DeleteAccountAccessConsentsConsentId.yaml │ │ ├── DeleteAccountRequest.yaml │ │ ├── GetAccountAccessConsentsConsentId.yaml │ │ ├── GetAccounts.yaml │ │ ├── GetAccountsAccountId.yaml │ │ ├── GetAccountsAccountIdBalances.yaml │ │ ├── GetAccountsAccountIdBeneficiaries.yaml │ │ ├── GetAccountsAccountIdDirectDebits.yaml │ │ ├── GetAccountsAccountIdOffers.yaml │ │ ├── GetAccountsAccountIdParty.yaml │ │ ├── GetAccountsAccountIdProduct.yaml │ │ ├── GetAccountsAccountIdScheduledPayments.yaml │ │ ├── GetAccountsAccountIdStandingOrders.yaml │ │ ├── GetAccountsAccountIdStatements.yaml │ │ ├── GetAccountsAccountIdStatementsStatementId.yaml │ │ ├── GetAccountsAccountIdStatementsStatementIdFile.yaml │ │ ├── GetAccountsAccountIdStatementsStatementIdTransactions.yaml │ │ ├── GetAccountsAccountIdTransactions.yaml │ │ ├── GetBalances.yaml │ │ ├── GetBeneficiaries.yaml │ │ ├── GetDirectDebits.yaml │ │ ├── GetOffers.yaml │ │ ├── GetParty.yaml │ │ ├── GetProducts.yaml │ │ ├── GetScheduledPayments.yaml │ │ ├── GetStandingOrders.yaml │ │ ├── GetStatements.yaml │ │ └── GetTransactions.yaml │ ├── readwrite │ │ ├── definitions │ │ │ ├── Error.yaml │ │ │ ├── File.yaml │ │ │ ├── ISODateTime.yaml │ │ │ ├── Links.yaml │ │ │ ├── Meta.yaml │ │ │ ├── OBError1.yaml │ │ │ ├── OBErrorResponse1.yaml │ │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ │ ├── 400ErrorResponse.yaml │ │ │ ├── 401ErrorResponse.yaml │ │ │ ├── 403ErrorResponse.yaml │ │ │ ├── 405ErrorResponse.yaml │ │ │ ├── 406ErrorResponse.yaml │ │ │ ├── 429ErrorResponse.yaml │ │ │ └── 500ErrorResponse.yaml │ ├── responses │ │ ├── 200AccountAccessConsentsConsentIdRead.yaml │ │ ├── 200AccountAccessConsentsDeleted.yaml │ │ ├── 200AccountAccessConsentsRead.yaml │ │ ├── 200AccountBalancesRead.yaml │ │ ├── 200AccountBeneficiariesRead.yaml │ │ ├── 200AccountDirectDebitsRead.yaml │ │ ├── 200AccountOffersRead.yaml │ │ ├── 200AccountPartyRead.yaml │ │ ├── 200AccountProductRead.yaml │ │ ├── 200AccountRead.yaml │ │ ├── 200AccountRequestRead.yaml │ │ ├── 200AccountScheduledPaymentsRead.yaml │ │ ├── 200AccountStandingOrdersRead.yaml │ │ ├── 200AccountStatementFileRead.yaml │ │ ├── 200AccountStatementsRead.yaml │ │ ├── 200AccountTransactionsRead.yaml │ │ ├── 200AccountsAccountIdBalancesRead.yaml │ │ ├── 200AccountsAccountIdBeneficiariesRead.yaml │ │ ├── 200AccountsAccountIdDirectDebitsRead.yaml │ │ ├── 200AccountsAccountIdOffersRead.yaml │ │ ├── 200AccountsAccountIdPartyRead.yaml │ │ ├── 200AccountsAccountIdProductRead.yaml │ │ ├── 200AccountsAccountIdRead.yaml │ │ ├── 200AccountsAccountIdScheduledPaymentsRead.yaml │ │ ├── 200AccountsAccountIdStandingOrdersRead.yaml │ │ ├── 200AccountsAccountIdStatementsRead.yaml │ │ ├── 200AccountsAccountIdStatementsStatementIdFileRead.yaml │ │ ├── 200AccountsAccountIdStatementsStatementIdRead.yaml │ │ ├── 200AccountsAccountIdStatementsStatementIdTransactionsRead.yaml │ │ ├── 200AccountsAccountIdTransactionsRead.yaml │ │ ├── 200AccountsRead.yaml │ │ ├── 200BalancesRead.yaml │ │ ├── 200BeneficiariesRead.yaml │ │ ├── 200DirectDebitsRead.yaml │ │ ├── 200OffersRead.yaml │ │ ├── 200PartyRead.yaml │ │ ├── 200ProductsRead.yaml │ │ ├── 200ScheduledPaymentsRead.yaml │ │ ├── 200StandingOrdersRead.yaml │ │ ├── 200StatementsRead.yaml │ │ ├── 200TransactionsRead.yaml │ │ ├── 201AccountAccessConsentsCreated.yaml │ │ ├── 201AccountRequestCreated.yaml │ │ ├── 204AccountAccessConsentsConsentIdDeleted.yaml │ │ ├── 204AccountAccessConsentsDeleted.yaml │ │ └── 204AccountRequestDeleted.yaml │ └── securityDefinitions │ │ ├── PSUOAuth2Security.yaml │ │ └── TPPOAuth2Security.yaml │ ├── callback-urls │ ├── definitions │ │ ├── OBCallbackUrl1.yaml │ │ ├── OBCallbackUrlData1.yaml │ │ ├── OBCallbackUrlResponse1.yaml │ │ ├── OBCallbackUrlResponseData1.yaml │ │ ├── OBCallbackUrlsResponse1.yaml │ │ ├── OBCallbackUrlsResponseData1.yaml │ │ ├── OBEvent1.yaml │ │ ├── OBEventLink1.yaml │ │ ├── OBEventNotification1.yaml │ │ ├── OBEventResourceUpdate1.yaml │ │ └── OBEventSubject1.yaml │ ├── index.yaml │ └── readwrite │ ├── confirmation-funds │ ├── definitions │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ ├── OBCashAccountDebtor4.yaml │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ ├── OBExternalRequestStatus1Code.yaml │ │ ├── OBFundsConfirmation1.yaml │ │ ├── OBFundsConfirmationConsent1.yaml │ │ ├── OBFundsConfirmationConsentData1.yaml │ │ ├── OBFundsConfirmationConsentDataResponse1.yaml │ │ ├── OBFundsConfirmationConsentResponse1.yaml │ │ ├── OBFundsConfirmationData1.yaml │ │ ├── OBFundsConfirmationDataResponse1.yaml │ │ └── OBFundsConfirmationResponse1.yaml │ ├── index.yaml │ ├── parameters │ │ ├── ConsentId.yaml │ │ ├── OBFundsConfirmation1Param.yaml │ │ ├── OBFundsConfirmationConsent1Param.yaml │ │ └── x-idempotency-key.yaml │ ├── paths │ │ ├── CreateFundsConfirmationConsents.yaml │ │ ├── CreateFundsConfirmations.yaml │ │ ├── DeleteFundsConfirmationConsentsConsentId.yaml │ │ └── GetFundsConfirmationConsentsConsentId.yaml │ ├── readwrite │ │ ├── definitions │ │ │ ├── Error.yaml │ │ │ ├── File.yaml │ │ │ ├── ISODateTime.yaml │ │ │ ├── Links.yaml │ │ │ ├── Meta.yaml │ │ │ ├── OBError1.yaml │ │ │ ├── OBErrorResponse1.yaml │ │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ │ ├── 400ErrorResponse.yaml │ │ │ ├── 401ErrorResponse.yaml │ │ │ ├── 403ErrorResponse.yaml │ │ │ ├── 405ErrorResponse.yaml │ │ │ ├── 406ErrorResponse.yaml │ │ │ ├── 429ErrorResponse.yaml │ │ │ └── 500ErrorResponse.yaml │ ├── responses │ │ ├── 200FundsConfirmationConsentRead.yaml │ │ ├── 200FundsConfirmationConsentsConsentIdRead.yaml │ │ ├── 201FundsConfirmationConsentCreated.yaml │ │ ├── 201FundsConfirmationConsentsCreated.yaml │ │ ├── 201FundsConfirmationCreated.yaml │ │ ├── 201FundsConfirmationsCreated.yaml │ │ └── 204FundsConfirmationConsentsConsentIdDeleted.yaml │ └── securityDefinitions │ │ ├── PSUOAuth2Security.yaml │ │ └── TPPOAuth2Security.yaml │ ├── data_definition │ ├── account-info │ │ ├── OBRWAISPMessages.csv │ │ └── Permissions.csv │ ├── ainfobca.2.2.0.swagger.json │ ├── ainfopca.2.2.0.swagger.json │ ├── callback-urls │ │ └── OBRWCallbackMessages.csv │ ├── confirmation-funds │ │ └── OBRWCBPIIMessages.csv │ ├── event-notifications │ │ ├── OBCallbackUrl1.csv │ │ ├── OBCallbackUrlResponse1.csv │ │ ├── OBCallbackUrlsResponse1.csv │ │ ├── OBErrorResponse1.csv │ │ └── OBEventNotification1.csv │ └── payment-initiation │ │ └── OBRWPISPMessages.csv │ ├── merge.yaml │ ├── payment-initiation │ ├── definitions │ │ ├── OBActiveCurrencyAndAmount_SimpleType.yaml │ │ ├── OBActiveOrHistoricCurrencyAndAmount.yaml │ │ ├── OBAddressTypeCode.yaml │ │ ├── OBAuthorisation1.yaml │ │ ├── OBBranchAndFinancialInstitutionIdentification6.yaml │ │ ├── OBCashAccountCreditor3.yaml │ │ ├── OBCashAccountDebtor4.yaml │ │ ├── OBCharge2.yaml │ │ ├── OBChargeBearerType1Code.yaml │ │ ├── OBDomestic2.yaml │ │ ├── OBDomesticScheduled2.yaml │ │ ├── OBDomesticStandingOrder2.yaml │ │ ├── OBExchangeRate1.yaml │ │ ├── OBExchangeRate2.yaml │ │ ├── OBExchangeRateType2Code.yaml │ │ ├── OBExternalAccountIdentification4Code.yaml │ │ ├── OBExternalAuthorisation1Code.yaml │ │ ├── OBExternalConsentStatus1Code.yaml │ │ ├── OBExternalConsentStatus2Code.yaml │ │ ├── OBExternalFileType1Code.yaml │ │ ├── OBExternalFinancialInstitutionIdentification4Code.yaml │ │ ├── OBExternalLocalInstrument1Code.yaml │ │ ├── OBExternalPaymentChargeType1Code.yaml │ │ ├── OBExternalPaymentContext1Code.yaml │ │ ├── OBExternalPermissions2Code.yaml │ │ ├── OBExternalPurpose1Code1.yaml │ │ ├── OBExternalStatus1Code.yaml │ │ ├── OBExternalStatus2Code.yaml │ │ ├── OBFile2.yaml │ │ ├── OBFundsAvailableResult1.yaml │ │ ├── OBInternational2.yaml │ │ ├── OBInternationalScheduled2.yaml │ │ ├── OBInternationalStandingOrder2.yaml │ │ ├── OBMultiAuthorisation1.yaml │ │ ├── OBPartyIdentification43.yaml │ │ ├── OBPostalAddress6.yaml │ │ ├── OBPriority2Code.yaml │ │ ├── OBRemittanceInformation1.yaml │ │ ├── OBRisk1.yaml │ │ ├── OBSupplementaryData1.yaml │ │ ├── OBTransactionIndividualStatus1Code.yaml │ │ ├── OBWriteDataDomestic2.yaml │ │ ├── OBWriteDataDomesticConsent2.yaml │ │ ├── OBWriteDataDomesticConsentResponse2.yaml │ │ ├── OBWriteDataDomesticResponse2.yaml │ │ ├── OBWriteDataDomesticScheduled2.yaml │ │ ├── OBWriteDataDomesticScheduledConsent2.yaml │ │ ├── OBWriteDataDomesticScheduledConsentResponse2.yaml │ │ ├── OBWriteDataDomesticScheduledResponse2.yaml │ │ ├── OBWriteDataDomesticStandingOrder2.yaml │ │ ├── OBWriteDataDomesticStandingOrderConsent2.yaml │ │ ├── OBWriteDataDomesticStandingOrderConsentResponse2.yaml │ │ ├── OBWriteDataDomesticStandingOrderResponse2.yaml │ │ ├── OBWriteDataFile2.yaml │ │ ├── OBWriteDataFileConsent2.yaml │ │ ├── OBWriteDataFileConsentResponse2.yaml │ │ ├── OBWriteDataFileResponse2.yaml │ │ ├── OBWriteDataFundsConfirmationResponse1.yaml │ │ ├── OBWriteDataInternational2.yaml │ │ ├── OBWriteDataInternationalConsent2.yaml │ │ ├── OBWriteDataInternationalConsentResponse2.yaml │ │ ├── OBWriteDataInternationalResponse2.yaml │ │ ├── OBWriteDataInternationalScheduled2.yaml │ │ ├── OBWriteDataInternationalScheduledConsent2.yaml │ │ ├── OBWriteDataInternationalScheduledConsentResponse2.yaml │ │ ├── OBWriteDataInternationalScheduledResponse2.yaml │ │ ├── OBWriteDataInternationalStandingOrder2.yaml │ │ ├── OBWriteDataInternationalStandingOrderConsent2.yaml │ │ ├── OBWriteDataInternationalStandingOrderConsentResponse2.yaml │ │ ├── OBWriteDataInternationalStandingOrderResponse2.yaml │ │ ├── OBWriteDomestic2.yaml │ │ ├── OBWriteDomesticConsent2.yaml │ │ ├── OBWriteDomesticConsentResponse2.yaml │ │ ├── OBWriteDomesticResponse2.yaml │ │ ├── OBWriteDomesticScheduled2.yaml │ │ ├── OBWriteDomesticScheduledConsent2.yaml │ │ ├── OBWriteDomesticScheduledConsentResponse2.yaml │ │ ├── OBWriteDomesticScheduledResponse2.yaml │ │ ├── OBWriteDomesticStandingOrder2.yaml │ │ ├── OBWriteDomesticStandingOrderConsent2.yaml │ │ ├── OBWriteDomesticStandingOrderConsentResponse2.yaml │ │ ├── OBWriteDomesticStandingOrderResponse2.yaml │ │ ├── OBWriteFile2.yaml │ │ ├── OBWriteFileConsent2.yaml │ │ ├── OBWriteFileConsentResponse2.yaml │ │ ├── OBWriteFileResponse2.yaml │ │ ├── OBWriteFundsConfirmationResponse1.yaml │ │ ├── OBWriteInternational2.yaml │ │ ├── OBWriteInternationalConsent2.yaml │ │ ├── OBWriteInternationalConsentResponse2.yaml │ │ ├── OBWriteInternationalResponse2.yaml │ │ ├── OBWriteInternationalScheduled2.yaml │ │ ├── OBWriteInternationalScheduledConsent2.yaml │ │ ├── OBWriteInternationalScheduledConsentResponse2.yaml │ │ ├── OBWriteInternationalScheduledResponse2.yaml │ │ ├── OBWriteInternationalStandingOrder2.yaml │ │ ├── OBWriteInternationalStandingOrderConsent2.yaml │ │ ├── OBWriteInternationalStandingOrderConsentResponse2.yaml │ │ └── OBWriteInternationalStandingOrderResponse2.yaml │ ├── index.yaml │ ├── parameters │ │ ├── ConsentId.yaml │ │ ├── DomesticPaymentId.yaml │ │ ├── DomesticScheduledPaymentId.yaml │ │ ├── DomesticStandingOrderId.yaml │ │ ├── FileParam.yaml │ │ ├── FilePaymentId.yaml │ │ ├── InternationalPaymentId.yaml │ │ ├── InternationalScheduledPaymentId.yaml │ │ ├── InternationalStandingOrderPaymentId.yaml │ │ ├── OBPaymentSetup1Param.yaml │ │ ├── OBWriteDomestic2Param.yaml │ │ ├── OBWriteDomesticConsent2Param.yaml │ │ ├── OBWriteDomesticScheduled2Param.yaml │ │ ├── OBWriteDomesticScheduledConsent2Param.yaml │ │ ├── OBWriteDomesticStandingOrder2Param.yaml │ │ ├── OBWriteDomesticStandingOrderConsent2Param.yaml │ │ ├── OBWriteFile2Param.yaml │ │ ├── OBWriteFileConsent2Param.yaml │ │ ├── OBWriteInternational2Param.yaml │ │ ├── OBWriteInternationalConsent2Param.yaml │ │ ├── OBWriteInternationalScheduled2Param.yaml │ │ ├── OBWriteInternationalScheduledConsent2Param.yaml │ │ ├── OBWriteInternationalStandingOrder2Param.yaml │ │ ├── OBWriteInternationalStandingOrderConsent2Param.yaml │ │ ├── OBWriteStandingOrder2Param.yaml │ │ ├── OBWriteStandingOrderConsent2Param.yaml │ │ ├── x-idempotency-key.yaml │ │ └── x-jws-signature-Param.yaml │ ├── paths │ │ ├── CreateDomesticPaymentConsents.yaml │ │ ├── CreateDomesticPayments.yaml │ │ ├── CreateDomesticScheduledPaymentConsents.yaml │ │ ├── CreateDomesticScheduledPayments.yaml │ │ ├── CreateDomesticStandingOrderConsents.yaml │ │ ├── CreateDomesticStandingOrders.yaml │ │ ├── CreateFilePaymentConsents.yaml │ │ ├── CreateFilePaymentConsentsConsentIdFile.yaml │ │ ├── CreateFilePayments.yaml │ │ ├── CreateInternationalPaymentConsents.yaml │ │ ├── CreateInternationalPayments.yaml │ │ ├── CreateInternationalScheduledPaymentConsents.yaml │ │ ├── CreateInternationalScheduledPayments.yaml │ │ ├── CreateInternationalStandingOrderConsents.yaml │ │ ├── CreateInternationalStandingOrders.yaml │ │ ├── GetDomesticPaymentConsentsConsentId.yaml │ │ ├── GetDomesticPaymentConsentsConsentIdFundsConfirmation.yaml │ │ ├── GetDomesticPaymentsDomesticPaymentId.yaml │ │ ├── GetDomesticScheduledPaymentConsentsConsentId.yaml │ │ ├── GetDomesticScheduledPaymentsDomesticScheduledPaymentId.yaml │ │ ├── GetDomesticStandingOrderConsentsConsentId.yaml │ │ ├── GetDomesticStandingOrdersDomesticStandingOrderId.yaml │ │ ├── GetFilePaymentConsentsConsentId.yaml │ │ ├── GetFilePaymentConsentsConsentIdFile.yaml │ │ ├── GetFilePaymentsFilePaymentId.yaml │ │ ├── GetFilePaymentsFilePaymentIdReportFile.yaml │ │ ├── GetInternationalPaymentConsentsConsentId.yaml │ │ ├── GetInternationalPaymentConsentsConsentIdFundsConfirmation.yaml │ │ ├── GetInternationalPaymentsInternationalPaymentId.yaml │ │ ├── GetInternationalScheduledPaymentConsentsConsentId.yaml │ │ ├── GetInternationalScheduledPaymentsInternationalScheduledPaymentId.yaml │ │ ├── GetInternationalStandingOrderConsentsConsentId.yaml │ │ └── GetInternationalStandingOrdersInternationalStandingOrderPaymentId.yaml │ ├── readwrite │ │ ├── definitions │ │ │ ├── Error.yaml │ │ │ ├── File.yaml │ │ │ ├── ISODateTime.yaml │ │ │ ├── Links.yaml │ │ │ ├── Meta.yaml │ │ │ ├── OBError1.yaml │ │ │ ├── OBErrorResponse1.yaml │ │ │ └── OBRisk2.yaml │ │ ├── parameters │ │ │ ├── AuthorizationParam.yaml │ │ │ ├── x-customer-user-agent-Param.yaml │ │ │ ├── x-fapi-customer-ip-address-Param.yaml │ │ │ ├── x-fapi-customer-last-logged-time-Param.yaml │ │ │ ├── x-fapi-financial-id-Param.yaml │ │ │ ├── x-fapi-interaction-id-Param.yaml │ │ │ └── x-jws-signature-Param.yaml │ │ └── responses │ │ │ ├── 400ErrorResponse.yaml │ │ │ ├── 401ErrorResponse.yaml │ │ │ ├── 403ErrorResponse.yaml │ │ │ ├── 405ErrorResponse.yaml │ │ │ ├── 406ErrorResponse.yaml │ │ │ ├── 429ErrorResponse.yaml │ │ │ └── 500ErrorResponse.yaml │ ├── responses │ │ ├── 200ConsentsRead.yaml │ │ ├── 200DomesticPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ ├── 200DomesticPaymentConsentsConsentIdRead.yaml │ │ ├── 200DomesticPaymentConsentsRead.yaml │ │ ├── 200DomesticPaymentsDomesticPaymentIdRead.yaml │ │ ├── 200DomesticPaymentsRead.yaml │ │ ├── 200DomesticScheduledPaymentConsentsConsentIdRead.yaml │ │ ├── 200DomesticScheduledPaymentConsentsRead.yaml │ │ ├── 200DomesticScheduledPaymentsDomesticScheduledPaymentIdRead.yaml │ │ ├── 200DomesticScheduledPaymentsRead.yaml │ │ ├── 200DomesticStandingOrderConsentsConsentIdRead.yaml │ │ ├── 200DomesticStandingOrderConsentsRead.yaml │ │ ├── 200DomesticStandingOrdersDomesticStandingOrderIdRead.yaml │ │ ├── 200DomesticStandingOrdersRead.yaml │ │ ├── 200FilePaymentConsentsConsentIdFileCreated.yaml │ │ ├── 200FilePaymentConsentsConsentIdFileRead.yaml │ │ ├── 200FilePaymentConsentsConsentIdRead.yaml │ │ ├── 200FilePaymentConsentsCreated.yaml │ │ ├── 200FilePaymentConsentsRead.yaml │ │ ├── 200FilePaymentsFilePaymentIdRead.yaml │ │ ├── 200FilePaymentsFilePaymentIdReportFileRead.yaml │ │ ├── 200FilePaymentsRead.yaml │ │ ├── 200InternationalPaymentConsentsConsentIdFundsConfirmationRead.yaml │ │ ├── 200InternationalPaymentConsentsConsentIdRead.yaml │ │ ├── 200InternationalPaymentConsentsRead.yaml │ │ ├── 200InternationalPaymentsInternationalPaymentIdRead.yaml │ │ ├── 200InternationalPaymentsRead.yaml │ │ ├── 200InternationalScheduledPaymentConsentsConsentIdRead.yaml │ │ ├── 200InternationalScheduledPaymentConsentsRead.yaml │ │ ├── 200InternationalScheduledPaymentsInternationalScheduledPaymentIdRead.yaml │ │ ├── 200InternationalScheduledPaymentsRead.yaml │ │ ├── 200InternationalStandingOrderConsentsConsentIdRead.yaml │ │ ├── 200InternationalStandingOrderConsentsRead.yaml │ │ ├── 200InternationalStandingOrdersInternationalStandingOrderPaymentIdRead.yaml │ │ ├── 200InternationalStandingOrdersRead.yaml │ │ ├── 200PaymentConsentsCreated.yaml │ │ ├── 200PaymentConsentsRead.yaml │ │ ├── 200PaymentsRead.yaml │ │ ├── 201ConsentsCreated.yaml │ │ ├── 201DomesticPaymentConsentsCreated.yaml │ │ ├── 201DomesticPaymentsCreated.yaml │ │ ├── 201DomesticScheduledPaymentConsentsCreated.yaml │ │ ├── 201DomesticScheduledPaymentsCreated.yaml │ │ ├── 201DomesticStandingOrderConsentsCreated.yaml │ │ ├── 201DomesticStandingOrdersCreated.yaml │ │ ├── 201FilePaymentConsentsCreated.yaml │ │ ├── 201FilePaymentsCreated.yaml │ │ ├── 201InternationalPaymentConsentsCreated.yaml │ │ ├── 201InternationalPaymentsCreated.yaml │ │ ├── 201InternationalScheduledPaymentConsentsCreated.yaml │ │ ├── 201InternationalScheduledPaymentsCreated.yaml │ │ ├── 201InternationalStandingOrderConsentsCreated.yaml │ │ ├── 201InternationalStandingOrdersCreated.yaml │ │ └── 201PaymentsCreated.yaml │ └── securityDefinitions │ │ ├── PSUOAuth2Security.yaml │ │ └── TPPOAuth2Security.yaml │ └── readwrite │ ├── definitions │ ├── Error.yaml │ ├── File.yaml │ ├── ISODateTime.yaml │ ├── Links.yaml │ ├── Meta.yaml │ ├── OBBCAData1.yaml │ ├── OBError1.yaml │ ├── OBErrorResponse1.yaml │ ├── OBPCAData1.yaml │ └── OBRisk2.yaml │ ├── parameters │ ├── AuthorizationParam.yaml │ ├── x-customer-user-agent-Param.yaml │ ├── x-fapi-customer-ip-address-Param.yaml │ ├── x-fapi-customer-last-logged-time-Param.yaml │ ├── x-fapi-financial-id-Param.yaml │ ├── x-fapi-interaction-id-Param.yaml │ └── x-jws-signature-Param.yaml │ └── responses │ ├── 400ErrorResponse.yaml │ ├── 401ErrorResponse.yaml │ ├── 403ErrorResponse.yaml │ ├── 404ErrorResponse.yaml │ ├── 405ErrorResponse.yaml │ ├── 406ErrorResponse.yaml │ ├── 415ErrorResponse.yaml │ ├── 429ErrorResponse.yaml │ └── 500ErrorResponse.yaml ├── lib ├── csv-to-yaml.js ├── remove-all-of.js ├── standards │ └── conventions.js └── util.js ├── package.json ├── schemas ├── .keep ├── v0 │ ├── accounts │ │ ├── account.get.200.response.schema.json │ │ ├── account_transactions.get.200.response.schema.json │ │ └── accounts.get.200.response.schema.json │ ├── accounts_requests │ │ ├── .keep │ │ ├── account_request.get.200.response.schema.json │ │ ├── account_request.post.201.response.schema.json │ │ └── account_request.post.request.schema.json │ ├── balances │ │ └── balances.get.200.response.schema.json │ ├── beneficiaries │ │ └── beneficiaries.get.200.response.schema.json │ ├── definitions │ │ ├── account_request │ │ │ ├── account_request_id.json │ │ │ ├── ob_external_permission_code.json │ │ │ ├── ob_external_request_status_code.json │ │ │ └── permissions.json │ │ ├── accounts │ │ │ ├── account.json │ │ │ ├── account_id.json │ │ │ ├── balance.json │ │ │ ├── balances │ │ │ │ ├── balance_type_code.json │ │ │ │ ├── credit_debit_code.json │ │ │ │ ├── credit_line.json │ │ │ │ └── external_limit_type_code.json │ │ │ ├── transaction.json │ │ │ └── transactions │ │ │ │ ├── bank_transaction_code.json │ │ │ │ ├── cash_balance.json │ │ │ │ ├── credit_debit_indicator.json │ │ │ │ ├── external_bank_transaction_family_code.json │ │ │ │ ├── external_bank_transaction_sub_family_code.json │ │ │ │ ├── merchant_details.json │ │ │ │ ├── proprietary_bank_transaction_code_structure.json │ │ │ │ └── status.json │ │ ├── beneficiaries │ │ │ ├── beneficiary.json │ │ │ ├── beneficiary_id.json │ │ │ └── beneficiary_type.json │ │ ├── common │ │ │ ├── active_or_historic_currency_code.json │ │ │ ├── active_or_historic_currency_code_and_amount.json │ │ │ ├── cash_account_and_branch_identification.json │ │ │ ├── country_code.json │ │ │ ├── created_at.json │ │ │ ├── creditor_cash_account.json │ │ │ ├── date_and_date_time_choice.json │ │ │ ├── decimal_number.json │ │ │ ├── external_account_identification_code.json │ │ │ ├── external_product_type_1_code.json │ │ │ ├── iban_identifier.json │ │ │ ├── iso_date.json │ │ │ ├── iso_date_time.json │ │ │ ├── links_self.json │ │ │ ├── max_10_text.json │ │ │ ├── max_140_text.json │ │ │ ├── max_15_numeric_text.json │ │ │ ├── max_15_text.json │ │ │ ├── max_16_text.json │ │ │ ├── max_34_text.json │ │ │ ├── max_350_text.json │ │ │ ├── max_35_text.json │ │ │ ├── max_40_text.json │ │ │ ├── max_500_text.json │ │ │ ├── max_50_text.json │ │ │ ├── max_70_text.json │ │ │ ├── min3_max4_text.json │ │ │ ├── ob_branch_and_financial_institution_identification.json │ │ │ ├── ob_external_financial_institution_identification_code.json │ │ │ ├── pagination_links.json │ │ │ ├── postal_address.json │ │ │ ├── uk_domestic_bank_account_number.json │ │ │ ├── uk_domestic_sort_code_identifier.json │ │ │ └── uuid.json │ │ ├── direct_debits │ │ │ ├── direct_debit.json │ │ │ ├── direct_debit_id.json │ │ │ └── ob_external_direct_debit_status_code.json │ │ ├── permissions │ │ │ ├── account_permissions.json │ │ │ └── transactions_permissions.json │ │ ├── products │ │ │ └── product.json │ │ └── standing_orders │ │ │ ├── standing_order.json │ │ │ └── standing_order_id.json │ ├── direct_debits │ │ └── direct_debits.get.200.response.schema.json │ ├── products │ │ ├── product.get.200.response.schema.json │ │ └── products.get.200.response.schema.json │ ├── shared │ │ ├── http-error-400.schema.json │ │ ├── http-error-401.schema.json │ │ ├── http-error-403.schema.json │ │ ├── http-error-409.schema.json │ │ └── http-error-500.schema.json │ └── standing_orders │ │ └── standing_orders.get.200.response.schema.json ├── v1.0 │ ├── accounts │ │ ├── account.get.200.response.schema.json │ │ ├── account_transactions.get.200.response.schema.json │ │ └── accounts.get.200.response.schema.json │ ├── accounts_requests │ │ ├── .keep │ │ ├── account_request.get.200.response.schema.json │ │ ├── account_request.post.201.response.schema.json │ │ └── account_request.post.request.schema.json │ ├── balances │ │ └── balances.get.200.response.schema.json │ ├── beneficiaries │ │ └── beneficiaries.get.200.response.schema.json │ ├── definitions │ │ ├── account_request │ │ │ ├── account_request_id.json │ │ │ ├── ob_external_permission_code.json │ │ │ ├── ob_external_request_status_code.json │ │ │ ├── permissions.json │ │ │ ├── request.json │ │ │ ├── response.json │ │ │ └── risk.json │ │ ├── accounts │ │ │ ├── account.json │ │ │ ├── account_id.json │ │ │ ├── accounts.json │ │ │ ├── balance.json │ │ │ ├── balances │ │ │ │ ├── balance_type_code.json │ │ │ │ ├── credit_debit_code.json │ │ │ │ ├── credit_line.json │ │ │ │ └── external_limit_type_code.json │ │ │ ├── transaction.json │ │ │ └── transactions │ │ │ │ ├── bank_transaction_code.json │ │ │ │ ├── cash_balance.json │ │ │ │ ├── credit_debit_indicator.json │ │ │ │ ├── external_bank_transaction_family_code.json │ │ │ │ ├── external_bank_transaction_sub_family_code.json │ │ │ │ ├── merchant_details.json │ │ │ │ ├── proprietary_bank_transaction_code_structure.json │ │ │ │ └── status.json │ │ ├── beneficiaries │ │ │ ├── beneficiary.json │ │ │ ├── beneficiary_id.json │ │ │ └── beneficiary_type.json │ │ ├── common │ │ │ ├── active_or_historic_currency_code.json │ │ │ ├── active_or_historic_currency_code_and_amount.json │ │ │ ├── cash_account_and_branch_identification.json │ │ │ ├── created_at.json │ │ │ ├── creditor_cash_account.json │ │ │ ├── date_and_date_time_choice.json │ │ │ ├── decimal_number.json │ │ │ ├── external_account_identification_code.json │ │ │ ├── external_product_type_1_code.json │ │ │ ├── iban_identifier.json │ │ │ ├── iso_date.json │ │ │ ├── iso_date_time.json │ │ │ ├── links_self.json │ │ │ ├── max_10_text.json │ │ │ ├── max_128_text.json │ │ │ ├── max_140_text.json │ │ │ ├── max_15_numeric_text.json │ │ │ ├── max_15_text.json │ │ │ ├── max_16_text.json │ │ │ ├── max_34_text.json │ │ │ ├── max_350_text.json │ │ │ ├── max_35_text.json │ │ │ ├── max_40_text.json │ │ │ ├── max_500_text.json │ │ │ ├── max_50_text.json │ │ │ ├── max_70_text.json │ │ │ ├── meta.json │ │ │ ├── min3_max4_text.json │ │ │ ├── ob_branch_and_financial_institution_identification.json │ │ │ ├── ob_external_financial_institution_identification_code.json │ │ │ ├── pagination_links.json │ │ │ ├── uk_domestic_bank_account_number.json │ │ │ ├── uk_domestic_sort_code_identifier.json │ │ │ └── uuid.json │ │ ├── data │ │ │ ├── account.json │ │ │ ├── account_request_get_response.json │ │ │ ├── account_request_post_response.json │ │ │ ├── account_request_request.json │ │ │ ├── accounts.json │ │ │ ├── balance.json │ │ │ ├── beneficiary.json │ │ │ ├── directdebit.json │ │ │ ├── product.json │ │ │ ├── products.json │ │ │ ├── standing_order.json │ │ │ └── transaction.json │ │ ├── direct_debits │ │ │ ├── direct_debit.json │ │ │ ├── direct_debit_id.json │ │ │ └── ob_external_direct_debit_status_code.json │ │ ├── permissions │ │ │ ├── account_permissions.json │ │ │ └── transactions_permissions.json │ │ ├── products │ │ │ └── product.json │ │ └── standing_orders │ │ │ ├── so2.json │ │ │ ├── standing_order.json │ │ │ └── standing_order_id.json │ ├── direct_debits │ │ └── direct_debits.get.200.response.schema.json │ ├── products │ │ ├── product.get.200.response.schema.json │ │ └── products.get.200.response.schema.json │ ├── shared │ │ ├── http-error-400.schema.json │ │ ├── http-error-401.schema.json │ │ ├── http-error-403.schema.json │ │ ├── http-error-405.schema.json │ │ ├── http-error-406.schema.json │ │ ├── http-error-429.schema.json │ │ └── http-error-500.schema.json │ └── standing_orders │ │ └── standing_orders.get.200.response.schema.json └── v1.1 │ ├── accounts │ ├── account.get.200.response.schema.json │ ├── account_transactions.get.200.response.schema.json │ └── accounts.get.200.response.schema.json │ ├── accounts_requests │ ├── .keep │ ├── account_request.get.200.response.schema.json │ ├── account_request.post.201.response.schema.json │ └── account_request.post.request.schema.json │ ├── balances │ └── balances.get.200.response.schema.json │ ├── beneficiaries │ └── beneficiaries.get.200.response.schema.json │ ├── definitions │ ├── account_request │ │ ├── ob_external_permission_code.json │ │ ├── ob_external_request_status_code.json │ │ ├── permissions.json │ │ ├── request.json │ │ ├── response.json │ │ └── risk.json │ ├── accounts │ │ ├── account.json │ │ ├── account_id.json │ │ ├── accounts.json │ │ ├── balance.json │ │ ├── balances │ │ │ ├── balance_type_code.json │ │ │ ├── credit_debit_code.json │ │ │ ├── credit_line.json │ │ │ └── external_limit_type_code.json │ │ ├── transaction.json │ │ └── transactions │ │ │ ├── bank_transaction_code.json │ │ │ ├── cash_balance.json │ │ │ ├── credit_debit_indicator.json │ │ │ ├── external_bank_transaction_family_code.json │ │ │ ├── external_bank_transaction_sub_family_code.json │ │ │ ├── merchant_details.json │ │ │ ├── proprietary_bank_transaction_code_structure.json │ │ │ └── status.json │ ├── beneficiaries │ │ ├── beneficiary.json │ │ ├── beneficiary_id.json │ │ └── beneficiary_type.json │ ├── common │ │ ├── active_or_historic_currency_code.json │ │ ├── active_or_historic_currency_code_and_amount.json │ │ ├── cash_account_and_branch_identification.json │ │ ├── created_at.json │ │ ├── creditor_cash_account.json │ │ ├── decimal_number.json │ │ ├── external_account_identification_code.json │ │ ├── external_account_identification_code_2.json │ │ ├── external_product_type_1_code.json │ │ ├── iban_identifier.json │ │ ├── iso_date.json │ │ ├── iso_date_time.json │ │ ├── links_self.json │ │ ├── max_10_text.json │ │ ├── max_128_text.json │ │ ├── max_140_text.json │ │ ├── max_15_numeric_text.json │ │ ├── max_15_text.json │ │ ├── max_16_text.json │ │ ├── max_34_text.json │ │ ├── max_350_text.json │ │ ├── max_35_text.json │ │ ├── max_40_text.json │ │ ├── max_500_text.json │ │ ├── max_50_text.json │ │ ├── max_70_text.json │ │ ├── meta.json │ │ ├── min3_max4_text.json │ │ ├── ob_branch_and_financial_institution_identification.json │ │ ├── ob_external_financial_institution_identification_code.json │ │ ├── ob_external_financial_institution_identification_code_2.json │ │ ├── pagination_links.json │ │ ├── uk_domestic_bank_account_number.json │ │ ├── uk_domestic_sort_code_identifier.json │ │ └── uuid.json │ ├── data │ │ ├── account.json │ │ ├── account_request_get_response.json │ │ ├── account_request_post_response.json │ │ ├── account_request_request.json │ │ ├── accounts.json │ │ ├── balance.json │ │ ├── beneficiary.json │ │ ├── directdebit.json │ │ ├── product.json │ │ ├── products.json │ │ ├── standing_order.json │ │ └── transaction.json │ ├── direct_debits │ │ ├── direct_debit.json │ │ ├── direct_debit_id.json │ │ └── ob_external_direct_debit_status_code.json │ ├── permissions │ │ ├── account_permissions.json │ │ └── transactions_permissions.json │ ├── products │ │ └── product.json │ └── standing_orders │ │ ├── standing_order.json │ │ └── standing_order_id.json │ ├── direct_debits │ └── direct_debits.get.200.response.schema.json │ ├── products │ ├── product.get.200.response.schema.json │ └── products.get.200.response.schema.json │ ├── shared │ ├── http-error-400.schema.json │ ├── http-error-401.schema.json │ ├── http-error-403.schema.json │ ├── http-error-405.schema.json │ ├── http-error-406.schema.json │ ├── http-error-429.schema.json │ └── http-error-500.schema.json │ └── standing_orders │ └── standing_orders.get.200.response.schema.json ├── scripts ├── build-swagger.js ├── convert-gefeg-to-definitions.js └── convert-product-to-definitions.js ├── swagger2markup-cli-1.3.1.jar ├── test ├── csv-to-yaml.test.js ├── data │ ├── account-info-transaction-endpoints-allof-merged.json │ └── account-info-transaction-endpoints-with-allof.json ├── def-to-swagger.test.js ├── standards │ └── conventions.js └── util.test.js └── yarn.lock /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/backup-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/.github/workflows/backup-s3.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.9 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README-GENERATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/README-GENERATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/README.md -------------------------------------------------------------------------------- /apis/v0/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apis/v0/swagger/definitions/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/definitions/index.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/definitions/mime_type.yaml: -------------------------------------------------------------------------------- 1 | application/json 2 | -------------------------------------------------------------------------------- /apis/v0/swagger/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/index.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/info/index.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/parameters/index.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/account_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/account_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/accounts_balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/accounts_balances_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/accounts_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/accounts_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/accounts_product_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/accounts_product_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/accounts_transactions_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/accounts_transactions_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts/parameters.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/accounts_requests/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/accounts_requests/parameters.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/balances/balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/balances/balances_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/beneficiaries/beneficiaries_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/beneficiaries/beneficiaries_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/direct_debits/direct_debits_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/direct_debits/direct_debits_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/index.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/products/products_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/products/products_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/paths/transactions/transactions_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/paths/transactions/transactions_get.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/responses/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/responses/index.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/security/PSU_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/security/PSU_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/security/TPP_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/security/TPP_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v0/swagger/security/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v0/swagger/security/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/definitions/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/definitions/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/definitions/mime_type.yaml: -------------------------------------------------------------------------------- 1 | application/json; charset=utf-8 -------------------------------------------------------------------------------- /apis/v1.0/swagger/headers/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/headers/auth.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/headers/fapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/headers/fapi.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/headers/jws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/headers/jws.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/info/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/parameters/date_filtering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/parameters/date_filtering.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/parameters/index.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts/account_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts/account_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts/accounts_balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts/accounts_balances_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts/accounts_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts/accounts_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts/accounts_product_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts/accounts_product_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts/parameters.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts_requests/body.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts_requests/body.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/accounts_requests/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/accounts_requests/parameters.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/balances/balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/balances/balances_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/beneficiaries/beneficiaries_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/beneficiaries/beneficiaries_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/direct_debits/direct_debits_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/direct_debits/direct_debits_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/products/products_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/products/products_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/paths/transactions/transactions_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/paths/transactions/transactions_get.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/responses/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/responses/index.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/security/PSU_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/security/PSU_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/security/TPP_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/security/TPP_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v1.0/swagger/security/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.0/swagger/security/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/definitions/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/definitions/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/definitions/mime_type.yaml: -------------------------------------------------------------------------------- 1 | application/json; charset=utf-8 -------------------------------------------------------------------------------- /apis/v1.1/swagger/headers/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/headers/auth.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/headers/fapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/headers/fapi.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/headers/jws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/headers/jws.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/info/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/parameters/date_filtering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/parameters/date_filtering.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/parameters/index.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts/account_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts/account_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts/accounts_balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts/accounts_balances_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts/accounts_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts/accounts_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts/accounts_product_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts/accounts_product_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts/parameters.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts_requests/body.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts_requests/body.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/accounts_requests/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/accounts_requests/parameters.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/balances/balances_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/balances/balances_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/beneficiaries/beneficiaries_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/beneficiaries/beneficiaries_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/direct_debits/direct_debits_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/direct_debits/direct_debits_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/products/products_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/products/products_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/paths/transactions/transactions_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/paths/transactions/transactions_get.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/responses/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/responses/index.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/security/PSU_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/security/PSU_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/security/TPP_OAuth2security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/security/TPP_OAuth2security.yaml -------------------------------------------------------------------------------- /apis/v1.1/swagger/security/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/apis/v1.1/swagger/security/index.yaml -------------------------------------------------------------------------------- /asciidoc/definitions.adoc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /asciidoc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/asciidoc/index.adoc -------------------------------------------------------------------------------- /asciidoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/asciidoc/index.html -------------------------------------------------------------------------------- /asciidoc/overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/asciidoc/overview.adoc -------------------------------------------------------------------------------- /asciidoc/paths.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/asciidoc/paths.adoc -------------------------------------------------------------------------------- /asciidoc/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/asciidoc/security.adoc -------------------------------------------------------------------------------- /data_definition/A.1.1.1/Enumerations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/Enumerations.xlsx -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBACCOUNT.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBACCOUNT.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBBALANCE.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBBALANCE.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBBENEFICIARY.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBBENEFICIARY.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBDIRECTDEBIT.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBDIRECTDEBIT.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBPRODUCT.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBPRODUCT.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBREQUEST.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBREQUEST.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBRESPONSE.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBRESPONSE.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadAccount1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadAccount1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadBalance1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadBalance1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadBeneficiary1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadBeneficiary1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadDirectDebit1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadDirectDebit1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadProduct1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadProduct1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadRequest1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadRequest1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadResponse1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadResponse1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadStandingOrder1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadStandingOrder1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBReadTransaction1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBReadTransaction1.gif -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBSTANDINGORDER.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBSTANDINGORDER.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/OBTRANSACTION.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/OBTRANSACTION.xls -------------------------------------------------------------------------------- /data_definition/A.1.1.1/Permissions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/data_definition/A.1.1.1/Permissions.xlsx -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | #we shouldn't commit this artifact for now 3 | -------------------------------------------------------------------------------- /dist/accounts/account_information_high_level_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/accounts/account_information_high_level_flow.png -------------------------------------------------------------------------------- /dist/v1.1/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v1.1/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v1.1/account-info-swagger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v1.1/account-info-swagger.pdf -------------------------------------------------------------------------------- /dist/v1.1/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v1.1/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v2.0-rc3/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc3/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v2.0-rc3/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc3/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v2.0-rc4/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc4/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v2.0-rc4/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc4/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v2.0-rc5/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc5/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v2.0-rc5/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0-rc5/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v2.0.0/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0.0/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v2.0.0/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v2.0.0/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC3/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC3/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC3/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC3/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.0-RC3/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC3/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC3/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC3/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/callback-urls-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/callback-urls-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/callback-urls-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/callback-urls-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/confirmation-funds-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/confirmation-funds-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/confirmation-funds-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/confirmation-funds-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/confirmation-funds-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/confirmation-funds-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/confirmation-funds-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/confirmation-funds-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/confirmation-funds-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/confirmation-funds-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/event-notifications-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/event-notifications-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/event-notifications-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/event-notifications-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.0-RC4/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.0-RC4/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0-RC4/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.0.0/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/confirmation-funds-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/confirmation-funds-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/confirmation-funds-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/confirmation-funds-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.0.0/confirmation-funds-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/confirmation-funds-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/confirmation-funds-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/confirmation-funds-swagger.json -------------------------------------------------------------------------------- /dist/v3.0.0/confirmation-funds-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/confirmation-funds-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.0.0/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.0.0/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.0.0/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.0.0/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft2/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft2/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft2/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft2/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.1-draft2/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft2/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft2/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft2/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft3/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/confirmation-funds-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/confirmation-funds-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/confirmation-funds-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/confirmation-funds-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.1-draft3/confirmation-funds-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/confirmation-funds-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/confirmation-funds-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/confirmation-funds-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft3/confirmation-funds-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/confirmation-funds-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.1-draft3/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft3/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft3/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft3/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/account-info-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/account-info-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft4/account-info-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/account-info-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/confirmation-funds-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/confirmation-funds-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/confirmation-funds-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/confirmation-funds-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.1-draft4/confirmation-funds-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/confirmation-funds-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/confirmation-funds-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/confirmation-funds-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft4/confirmation-funds-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/confirmation-funds-swagger.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/payment-initiation-swagger-dereferenced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/payment-initiation-swagger-dereferenced.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/payment-initiation-swagger-with-allof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/payment-initiation-swagger-with-allof.json -------------------------------------------------------------------------------- /dist/v3.1-draft4/payment-initiation-swagger-with-allof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/payment-initiation-swagger-with-allof.yaml -------------------------------------------------------------------------------- /dist/v3.1-draft4/payment-initiation-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/payment-initiation-swagger.json -------------------------------------------------------------------------------- /dist/v3.1-draft4/payment-initiation-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/dist/v3.1-draft4/payment-initiation-swagger.yaml -------------------------------------------------------------------------------- /docs/accounts/account_information_high_level_flow.wsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/docs/accounts/account_information_high_level_flow.wsd -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/index.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/parameters/AccountIdParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/parameters/AccountIdParam.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/parameters/AccountRequestIdParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/parameters/AccountRequestIdParam.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/parameters/OBReadRequest1Param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/parameters/OBReadRequest1Param.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/parameters/StatementIdParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/parameters/StatementIdParam.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/parameters/ToBookingDateTimeParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/parameters/ToBookingDateTimeParam.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/CreateAccountRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/CreateAccountRequest.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/DeleteAccountRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/DeleteAccountRequest.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccount.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountBalances.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountOffers.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountParty.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountProduct.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountRequest.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountScheduledPayments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountScheduledPayments.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountStatement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountStatement.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountStatementFile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountStatementFile.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountStatements.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccountTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccountTransactions.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetAccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetAccounts.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetBalances.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetOffers.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetParty.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetProducts.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetScheduledPayments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetScheduledPayments.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetStatements.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/paths/GetTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/paths/GetTransactions.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountBalancesRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountBalancesRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountOffersRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountOffersRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountPartyRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountPartyRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountProductRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountProductRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/accounts/responses/200AccountRequestRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/accounts/responses/200AccountRequestRead.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDACCOUNT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDACCOUNT.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDACCOUNTREQ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDACCOUNTREQ.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDACCOUNTRES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDACCOUNTRES.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDBALANCE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDBALANCE.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDBENEFICIARY.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDBENEFICIARY.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDDIRECTDEBIT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDDIRECTDEBIT.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDOFFER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDOFFER.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDPARTY.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDPARTY.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDPRODUCT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDPRODUCT.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDSCHEDULEDPAYMENT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDSCHEDULEDPAYMENT.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDSTANDINGORDER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDSTANDINGORDER.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDSTATEMENT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDSTATEMENT.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/OBRDTRANSACTION.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/OBRDTRANSACTION.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/Permissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/Permissions.csv -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/ainfobca.2.2.0.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/ainfobca.2.2.0.swagger.json -------------------------------------------------------------------------------- /inputs/v2.0.0/data_definition/ainfopca.2.2.0.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/data_definition/ainfopca.2.2.0.swagger.json -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/definitions/ISODateTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/definitions/ISODateTime.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/definitions/OBRisk2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/definitions/OBRisk2.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/parameters/AuthorizationParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/parameters/AuthorizationParam.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/parameters/x-jws-signature-Param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/parameters/x-jws-signature-Param.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/400ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 400ErrorResponse: 2 | description: Bad Request -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/429ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/responses/429ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v2.0.0/readwrite/responses/500ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v2.0.0/readwrite/responses/500ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBAccount2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBAccount2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBAccount2Basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBAccount2Basic.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBBeneficiary2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBBeneficiary2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBCashAccount3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBCashAccount3.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBCashAccount4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBCashAccount4.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBCashBalance1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBCashBalance1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBCreditLine1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBCreditLine1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBDirectDebit1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBDirectDebit1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBProduct2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBProduct2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadAccount2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadAccount2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadBalance1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadBalance1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadConsent1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadConsent1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadData1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBReadProduct2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBReadProduct2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBStatement1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBStatement1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBStatementFee1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBStatementFee1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/definitions/OBTransaction3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/definitions/OBTransaction3.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/index.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/parameters/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/parameters/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/parameters/AccountIdParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/parameters/AccountIdParam.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/parameters/StatementId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/parameters/StatementId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/parameters/StatementIdParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/parameters/StatementIdParam.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/CreateAccountRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/CreateAccountRequest.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/DeleteAccountRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/DeleteAccountRequest.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetAccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetAccounts.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetAccountsAccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetAccountsAccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetBalances.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetOffers.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetParty.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetProducts.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetScheduledPayments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetScheduledPayments.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetStatements.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/paths/GetTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/paths/GetTransactions.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/definitions/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/readwrite/definitions/Error.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200AccountRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200AccountRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200AccountsRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200AccountsRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200BalancesRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200BalancesRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200OffersRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200OffersRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200PartyRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200PartyRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200ProductsRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200ProductsRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/account-info/responses/200StatementsRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/account-info/responses/200StatementsRead.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/confirmation-funds/index.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/confirmation-funds/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.0-RC4/confirmation-funds/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.0-RC4/data_definition/account-info/OBReadOffer1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/data_definition/account-info/OBReadOffer1.csv -------------------------------------------------------------------------------- /inputs/v3.0-RC4/data_definition/account-info/OBReadParty1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/data_definition/account-info/OBReadParty1.csv -------------------------------------------------------------------------------- /inputs/v3.0-RC4/data_definition/account-info/Permissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/data_definition/account-info/Permissions.csv -------------------------------------------------------------------------------- /inputs/v3.0-RC4/data_definition/ainfobca.2.2.0.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/data_definition/ainfobca.2.2.0.swagger.json -------------------------------------------------------------------------------- /inputs/v3.0-RC4/data_definition/ainfopca.2.2.0.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/data_definition/ainfopca.2.2.0.swagger.json -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/definitions/OBCharge1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/definitions/OBCharge1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/definitions/OBFile1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/definitions/OBFile1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/definitions/OBRisk1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/definitions/OBRisk1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/index.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/parameters/FileParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/payment-initiation/parameters/FileParam.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.0-RC4/payment-initiation/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/Error.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/ISODateTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/ISODateTime.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/OBError1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/OBError1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/OBErrorResponse1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/OBErrorResponse1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/definitions/OBRisk2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/definitions/OBRisk2.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/parameters/AuthorizationParam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/parameters/AuthorizationParam.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/400ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/responses/400ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/404ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 404ErrorResponse: 3 | description: "Not found" 4 | -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/415ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 415ErrorResponse: 2 | description: Unsupported Media Type -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/429ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/responses/429ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.0-RC4/readwrite/responses/500ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.0-RC4/readwrite/responses/500ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBAccount2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBAccount2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBProduct2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBProduct2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBReadData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBReadData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBReadOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBReadOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBReadParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBReadParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/definitions/OBStatement1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/definitions/OBStatement1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/parameters/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/parameters/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/parameters/StatementId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/parameters/StatementId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetAccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetAccounts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetBalances.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetOffers.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetParty.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetProducts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetStatements.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/paths/GetTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/paths/GetTransactions.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/responses/200AccountRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/responses/200AccountRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/responses/200OffersRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/responses/200OffersRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/account-info/responses/200PartyRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/account-info/responses/200PartyRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/confirmation-funds/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft2/confirmation-funds/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/payment-initiation/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft2/payment-initiation/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/Error.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/ISODateTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/ISODateTime.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/OBError1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/OBError1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/definitions/OBRisk2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/definitions/OBRisk2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/400ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/responses/400ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/404ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 404ErrorResponse: 3 | description: "Not found" 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/415ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 415ErrorResponse: 2 | description: Unsupported Media Type -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/429ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/responses/429ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft2/readwrite/responses/500ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft2/readwrite/responses/500ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBAccount3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBAccount3.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBProduct2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBProduct2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBReadData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBReadData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBReadOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBReadOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBReadParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBReadParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/definitions/OBStatement1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/definitions/OBStatement1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/parameters/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/parameters/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/parameters/StatementId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/parameters/StatementId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetAccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetAccounts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetBalances.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetOffers.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetParty.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetProducts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetStatements.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/paths/GetTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/paths/GetTransactions.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/responses/200AccountRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/responses/200AccountRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/responses/200OffersRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/responses/200OffersRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/account-info/responses/200PartyRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/account-info/responses/200PartyRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/confirmation-funds/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft3/confirmation-funds/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/payment-initiation/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft3/payment-initiation/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/Error.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/ISODateTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/ISODateTime.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/OBError1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/OBError1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/definitions/OBRisk2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/definitions/OBRisk2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/400ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/responses/400ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/404ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 404ErrorResponse: 3 | description: "Not found" 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/415ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 415ErrorResponse: 2 | description: Unsupported Media Type -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/429ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/responses/429ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft3/readwrite/responses/500ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft3/readwrite/responses/500ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBAccount3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBAccount3.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBProduct2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBProduct2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBReadData1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBReadData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBReadOffer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBReadOffer1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBReadParty1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBReadParty1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/definitions/OBStatement1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/definitions/OBStatement1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/parameters/AccountId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/parameters/AccountId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/parameters/ConsentId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/parameters/ConsentId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/parameters/StatementId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/parameters/StatementId.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetAccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetAccounts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetBalances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetBalances.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetBeneficiaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetBeneficiaries.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetDirectDebits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetDirectDebits.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetOffers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetOffers.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetParty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetParty.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetProducts.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetStandingOrders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetStandingOrders.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetStatements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetStatements.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/paths/GetTransactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/paths/GetTransactions.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/responses/200AccountRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/responses/200AccountRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/responses/200OffersRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/responses/200OffersRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/account-info/responses/200PartyRead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/account-info/responses/200PartyRead.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/callback-urls/definitions/OBEvent1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/callback-urls/definitions/OBEvent1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/callback-urls/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/callback-urls/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/callback-urls/readwrite: -------------------------------------------------------------------------------- 1 | ../readwrite -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/confirmation-funds/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft4/confirmation-funds/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft4/merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/merge.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/payment-initiation/index.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft4/payment-initiation/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/Error.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/File.yaml: -------------------------------------------------------------------------------- 1 | File: 2 | type: string 3 | format: binary 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/ISODateTime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/ISODateTime.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/Links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/Links.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/Meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/Meta.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/OBBCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBBCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/OBError1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/OBError1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/OBPCAData1.yaml: -------------------------------------------------------------------------------- 1 | ../../account-info/definitions/OBPCAData1.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/definitions/OBRisk2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/definitions/OBRisk2.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/400ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/responses/400ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/401ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 401ErrorResponse: 2 | description: Unauthorized -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/403ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 403ErrorResponse: 2 | description: Forbidden -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/404ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 404ErrorResponse: 3 | description: "Not found" 4 | -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/405ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 405ErrorResponse: 2 | description: Method Not Allowed -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/406ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 406ErrorResponse: 2 | description: Not Acceptable -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/415ErrorResponse.yaml: -------------------------------------------------------------------------------- 1 | 415ErrorResponse: 2 | description: Unsupported Media Type -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/429ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/responses/429ErrorResponse.yaml -------------------------------------------------------------------------------- /inputs/v3.1-draft4/readwrite/responses/500ErrorResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/inputs/v3.1-draft4/readwrite/responses/500ErrorResponse.yaml -------------------------------------------------------------------------------- /lib/csv-to-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/lib/csv-to-yaml.js -------------------------------------------------------------------------------- /lib/remove-all-of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/lib/remove-all-of.js -------------------------------------------------------------------------------- /lib/standards/conventions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/lib/standards/conventions.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/package.json -------------------------------------------------------------------------------- /schemas/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v0/accounts/account.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/accounts/account.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v0/accounts/accounts.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/accounts/accounts.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v0/accounts_requests/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v0/balances/balances.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/balances/balances.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v0/definitions/account_request/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/account_request/permissions.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/account.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/account_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/account_id.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/balance.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/balances/credit_line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/balances/credit_line.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/transaction.json -------------------------------------------------------------------------------- /schemas/v0/definitions/accounts/transactions/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/accounts/transactions/status.json -------------------------------------------------------------------------------- /schemas/v0/definitions/beneficiaries/beneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/beneficiaries/beneficiary.json -------------------------------------------------------------------------------- /schemas/v0/definitions/beneficiaries/beneficiary_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/beneficiaries/beneficiary_id.json -------------------------------------------------------------------------------- /schemas/v0/definitions/beneficiaries/beneficiary_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/beneficiaries/beneficiary_type.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/country_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/country_code.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/created_at.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/creditor_cash_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/creditor_cash_account.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/date_and_date_time_choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/date_and_date_time_choice.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/decimal_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/decimal_number.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/iban_identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/iban_identifier.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/iso_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/iso_date.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/iso_date_time.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v0/definitions/common/links_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/links_self.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_10_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_10_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_140_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_140_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_15_numeric_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_15_numeric_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_15_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_15_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_16_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_16_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_34_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_34_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_350_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_350_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_35_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_35_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_40_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_40_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_500_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_500_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_50_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_50_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/max_70_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/max_70_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/min3_max4_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/min3_max4_text.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/pagination_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/pagination_links.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/postal_address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/postal_address.json -------------------------------------------------------------------------------- /schemas/v0/definitions/common/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/common/uuid.json -------------------------------------------------------------------------------- /schemas/v0/definitions/direct_debits/direct_debit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/direct_debits/direct_debit.json -------------------------------------------------------------------------------- /schemas/v0/definitions/direct_debits/direct_debit_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/direct_debits/direct_debit_id.json -------------------------------------------------------------------------------- /schemas/v0/definitions/permissions/account_permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/permissions/account_permissions.json -------------------------------------------------------------------------------- /schemas/v0/definitions/products/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/products/product.json -------------------------------------------------------------------------------- /schemas/v0/definitions/standing_orders/standing_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/standing_orders/standing_order.json -------------------------------------------------------------------------------- /schemas/v0/definitions/standing_orders/standing_order_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/definitions/standing_orders/standing_order_id.json -------------------------------------------------------------------------------- /schemas/v0/products/product.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/products/product.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v0/products/products.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/products/products.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v0/shared/http-error-400.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/shared/http-error-400.schema.json -------------------------------------------------------------------------------- /schemas/v0/shared/http-error-401.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/shared/http-error-401.schema.json -------------------------------------------------------------------------------- /schemas/v0/shared/http-error-403.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/shared/http-error-403.schema.json -------------------------------------------------------------------------------- /schemas/v0/shared/http-error-409.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/shared/http-error-409.schema.json -------------------------------------------------------------------------------- /schemas/v0/shared/http-error-500.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v0/shared/http-error-500.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/accounts/account.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/accounts/account.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/accounts/accounts.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/accounts/accounts.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/accounts_requests/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v1.0/balances/balances.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/balances/balances.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/account_request/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/account_request/permissions.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/account_request/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/account_request/request.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/account_request/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/account_request/response.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/account_request/risk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/account_request/risk.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/account.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/account_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/account_id.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/accounts.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/balance.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/balances/credit_line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/balances/credit_line.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/transaction.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/accounts/transactions/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/accounts/transactions/status.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/beneficiaries/beneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/beneficiaries/beneficiary.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/beneficiaries/beneficiary_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/beneficiaries/beneficiary_id.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/beneficiaries/beneficiary_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/beneficiaries/beneficiary_type.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/created_at.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/creditor_cash_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/creditor_cash_account.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/decimal_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/decimal_number.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/iban_identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/iban_identifier.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/iso_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/iso_date.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/iso_date_time.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/links_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/links_self.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_10_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_10_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_128_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_128_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_140_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_140_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_15_numeric_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_15_numeric_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_15_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_15_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_16_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_16_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_34_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_34_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_350_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_350_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_35_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_35_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_40_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_40_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_500_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_500_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_50_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_50_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/max_70_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/max_70_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/meta.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/min3_max4_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/min3_max4_text.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/pagination_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/pagination_links.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/common/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/common/uuid.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/account.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/account_request_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/account_request_request.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/accounts.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/balance.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/beneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/beneficiary.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/directdebit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/directdebit.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/product.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/products.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/standing_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/standing_order.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/data/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/data/transaction.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/direct_debits/direct_debit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/direct_debits/direct_debit.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/direct_debits/direct_debit_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/direct_debits/direct_debit_id.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/permissions/account_permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/permissions/account_permissions.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/products/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/products/product.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/standing_orders/so2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/standing_orders/so2.json -------------------------------------------------------------------------------- /schemas/v1.0/definitions/standing_orders/standing_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/definitions/standing_orders/standing_order.json -------------------------------------------------------------------------------- /schemas/v1.0/products/product.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/products/product.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/products/products.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/products/products.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-400.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-400.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-401.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-401.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-403.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-403.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-405.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-405.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-406.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-406.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-429.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-429.schema.json -------------------------------------------------------------------------------- /schemas/v1.0/shared/http-error-500.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.0/shared/http-error-500.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/accounts/account.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/accounts/account.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/accounts/accounts.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/accounts/accounts.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/accounts_requests/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v1.1/balances/balances.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/balances/balances.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/account_request/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/account_request/permissions.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/account_request/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/account_request/request.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/account_request/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/account_request/response.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/account_request/risk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/account_request/risk.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/account.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/account_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/account_id.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/accounts.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/balance.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/transaction.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/accounts/transactions/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/accounts/transactions/status.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/beneficiaries/beneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/beneficiaries/beneficiary.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/beneficiaries/beneficiary_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/beneficiaries/beneficiary_id.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/created_at.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/creditor_cash_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/creditor_cash_account.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/decimal_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/decimal_number.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/iban_identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/iban_identifier.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/iso_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/iso_date.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/iso_date_time.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/links_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/links_self.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_10_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_10_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_128_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_128_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_140_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_140_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_15_numeric_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_15_numeric_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_15_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_15_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_16_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_16_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_34_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_34_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_350_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_350_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_35_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_35_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_40_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_40_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_500_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_500_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_50_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_50_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/max_70_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/max_70_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/meta.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/min3_max4_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/min3_max4_text.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/pagination_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/pagination_links.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/common/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/common/uuid.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/account.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/account_request_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/account_request_request.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/accounts.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/balance.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/beneficiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/beneficiary.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/directdebit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/directdebit.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/product.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/products.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/standing_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/standing_order.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/data/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/data/transaction.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/direct_debits/direct_debit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/direct_debits/direct_debit.json -------------------------------------------------------------------------------- /schemas/v1.1/definitions/products/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/definitions/products/product.json -------------------------------------------------------------------------------- /schemas/v1.1/products/product.get.200.response.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/products/product.get.200.response.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-400.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-400.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-401.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-401.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-403.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-403.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-405.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-405.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-406.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-406.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-429.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-429.schema.json -------------------------------------------------------------------------------- /schemas/v1.1/shared/http-error-500.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/schemas/v1.1/shared/http-error-500.schema.json -------------------------------------------------------------------------------- /scripts/build-swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/scripts/build-swagger.js -------------------------------------------------------------------------------- /scripts/convert-gefeg-to-definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/scripts/convert-gefeg-to-definitions.js -------------------------------------------------------------------------------- /scripts/convert-product-to-definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/scripts/convert-product-to-definitions.js -------------------------------------------------------------------------------- /swagger2markup-cli-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/swagger2markup-cli-1.3.1.jar -------------------------------------------------------------------------------- /test/csv-to-yaml.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/test/csv-to-yaml.test.js -------------------------------------------------------------------------------- /test/def-to-swagger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/test/def-to-swagger.test.js -------------------------------------------------------------------------------- /test/standards/conventions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/test/standards/conventions.js -------------------------------------------------------------------------------- /test/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/test/util.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/account-info-api-spec/HEAD/yarn.lock --------------------------------------------------------------------------------