Skip to content

Commit

Permalink
Published API specification v1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaaufauvre committed Apr 4, 2023
1 parent 2fb91f8 commit 1b3885b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
11 changes: 4 additions & 7 deletions finicity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ info:
name: Finicity
email: [email protected]
url: 'https://www.finicity.com/contact/'
version: 1.11.1
version: 1.11.2
servers:
- url: 'https://api.finicity.com'
description: Production
Expand Down Expand Up @@ -10411,10 +10411,7 @@ components:
number:
type: string
deprecated: true
description: >-
Use the `accountNumberDisplay` field. Starting July 1, 2021 the
`number` field will sunset with limited support until April 1, 2022,
at which time it will be deprecated (no longer available).
description: The account number from the institution
example: '2000004444'
accountNumberDisplay:
$ref: '#/components/schemas/AccountNumberDisplay'
Expand Down Expand Up @@ -11392,7 +11389,7 @@ components:
type: string
description:
The email address for the customer receiving the Connect email
example: alex.salido@finicity.com
example: bob@example.com
from:
type: string
description:
Expand Down Expand Up @@ -14166,7 +14163,7 @@ components:
properties:
accountId:
$ref: '#/components/schemas/NumericAccountId'
index:
statementIndex:
type: integer
description: Index of the statement to retrieve
format: int32
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void generateStatementReportTest() {
try {
var constraints = new StatementReportConstraints()
.statementReportData(new StatementData()
.index(1)
.statementIndex(1)
.accountId(Long.valueOf(existingAccountId)));
var reportAck = api.generateStatementReport(CUSTOMER_ID, constraints, null);
assertEquals("inProgress", reportAck.getStatus());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void getStatementReportByConsumerOrCustomerTest() throws Exception {
// Create a report the first time
var constraints = new StatementReportConstraints()
.statementReportData(new StatementData()
.index(1)
.statementIndex(1)
.accountId(Long.valueOf(existingAccountId)));
var reportAck = bankStatementsApi.generateStatementReport(CUSTOMER_ID, constraints, null);
reportId = reportAck.getId();
Expand Down

0 comments on commit 1b3885b

Please sign in to comment.