Skip to content

Commit

Permalink
US Open banking API changes
Browse files Browse the repository at this point in the history
254 - Added LinkedAccountDate field in customerAccounts and CustomerAccountOldestTransactionDate (Return Activated Date in all GET Accounts API.) 

256 - Updating description for from and to date of transactions report

257  - add new fi status values
  • Loading branch information
Jadavpadma authored Jan 16, 2025
1 parent 6d02d64 commit 0bb5ad3
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions openbanking-us.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ info:
name: API Support
email: [email protected]
url: 'https://developer.mastercard.com/open-banking-us/documentation/support/'
version: 1.21.3
version: 1.21.4
servers:
- url: 'https://api.finicity.com'
description: Production
Expand Down Expand Up @@ -2181,8 +2181,8 @@ paths:
parameters:
- $ref: '#/components/parameters/ReportCallbackUrlParameter'
- $ref: '#/components/parameters/CustomerIdParameter'
- $ref: '#/components/parameters/RequiredFromDateParameter'
- $ref: '#/components/parameters/RequiredToDateParameter'
- $ref: '#/components/parameters/RequiredTransactionReportFromDateParameter'
- $ref: '#/components/parameters/RequiredTransactionReportToDateParameter'
- $ref: '#/components/parameters/IncludePendingParameter'
requestBody:
$ref: '#/components/requestBodies/GenerateTransactionsReportRequest'
Expand Down Expand Up @@ -5861,6 +5861,7 @@ components:
value: PSC Finance
shown: false
fromDate: 1580558400
toDate: 1643720017
GenerateBalanceBusinessCraAnalyticsReportRequestExample:
value:
analyticsReportData:
Expand Down Expand Up @@ -16502,9 +16503,28 @@ components:
name: toDate
in: query
required: true
schema:
$ref: '#/components/schemas/UnixDate'
example: 1670504017
RequiredTransactionReportFromDateParameter:
description:
Transactions starting from this date will be included in the report.
name: fromDate
in: query
required: false
schema:
$ref: '#/components/schemas/UnixDate'
example: 1607450357
RequiredTransactionReportToDateParameter:
description:
Transactions up to and including this date will be incorporated into the
report. It should be later than the fromDate.
name: toDate
in: query
required: false
schema:
$ref: '#/components/schemas/UnixDate'
example: 1670504017
ReportCallbackUrlParameter:
name: callbackUrl
in: query
Expand Down Expand Up @@ -20916,6 +20936,8 @@ components:
$ref: '#/components/schemas/DisplayPosition'
parentAccount:
$ref: '#/components/schemas/CustomerAccountParentAccountId'
linkedAccountDate:
$ref: '#/components/schemas/LinkedAccountDate'
CustomerAccountAggregationAttemptDate:
type: integer
description: >-
Expand Down Expand Up @@ -21712,6 +21734,8 @@ components:
$ref: '#/components/schemas/DisplayPosition'
parentAccount:
$ref: '#/components/schemas/AccountId'
linkedAccountDate:
$ref: '#/components/schemas/LinkedAccountDate'
CustomerAccounts:
description: A list of customer accounts
required:
Expand Down Expand Up @@ -22777,7 +22801,7 @@ components:
type: string
description: >-
Status for the institution: "online", "offline", "maintenance",
"testing"
"testing", "beta", "validated", "migrating"
example: online
newInstitutionId:
$ref: '#/components/schemas/NumericInstitutionId'
Expand Down Expand Up @@ -29273,3 +29297,11 @@ components:
`paycard`
type: string
example: 'checking'
LinkedAccountDate:
type: integer
description: >-
A timestamp showing when the account was last linked to the system. A
date in Unix epoch time (in seconds). See: [Handling Epoch Dates and
Times](https://developer.mastercard.com/open-banking-us/documentation/codes-and-formats/).
format: int64
example: 1607450357

0 comments on commit 0bb5ad3

Please sign in to comment.