Skip to content

Commit

Permalink
Published API specification v1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jaaufauvre committed Dec 13, 2022
1 parent e935bf7 commit 3f1f8f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion finicity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ info:
name: Finicity
email: business.development@finicity.com
url: 'https://www.finicity.com/contact/'
version: 1.7.3
version: 1.7.4
servers:
- url: 'https://api.finicity.com'
description: Production
Expand Down Expand Up @@ -1609,6 +1609,7 @@ paths:
- $ref: '#/components/parameters/CustomerIdParameter'
- $ref: '#/components/parameters/AccountIdParameter'
- $ref: '#/components/parameters/StatementIndexParameter'
- $ref: '#/components/parameters/StatementTypeParameter'
responses:
'200':
$ref: '#/components/responses/GetCustomerAccountStatementResponse'
Expand Down Expand Up @@ -6024,6 +6025,13 @@ components:
schema:
type: string
example: 'https://finicity-test/webhook'
StatementTypeParameter:
name: type
in: query
required: false
description: The type of statement to retrieve
schema:
$ref: '#/components/schemas/StatementType'
schemas:
ErrorMessage:
required:
Expand Down Expand Up @@ -6072,6 +6080,10 @@ components:
type: string
description: Name of a Finicity partner
example: Finicity Test API
StatementType:
type: string
description: Account statement types
example: taxStatement
ConnectLanguage:
description: >
Generate a translated Connect URL link.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void generateStatementReportTest() {
@Test
void getCustomerAccountStatementTest() {
try {
var pdf = api.getCustomerAccountStatement(CUSTOMER_ID, existingAccountId, 1);
var pdf = api.getCustomerAccountStatement(CUSTOMER_ID, existingAccountId, 1, null);
assertNotNull(pdf);
} catch (ApiException e) {
fail(e);
Expand Down

0 comments on commit 3f1f8f8

Please sign in to comment.