Skip to content

Commit

Permalink
AIS - transcationId replaced with entryId (#107)
Browse files Browse the repository at this point in the history
transactionId replaced with entryId as input parameter in GET /transactions/accounts/{accountId}/transactions/{transactionId} endpoint in AIS
  • Loading branch information
svenbiellmann authored and dkoeni committed Sep 13, 2024
1 parent 810c539 commit aa3565d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions accountAPI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,15 +242,15 @@ paths:
'503':
$ref: '#/components/responses/standard503'

/accounts/{accountId}/transactions/{transactionId}:
/accounts/{accountId}/transactions/{entryId}:
get:
tags:
- accounts
summary: Details of the specified transaction
description: Retrieves the details of the specified transaction.
parameters:
- $ref: '#/components/parameters/path_accountId'
- $ref: '#/components/parameters/path_transactionId'
- $ref: '#/components/parameters/path_entryId'
- $ref: '#/components/parameters/authorization_in_header'
- $ref: '#/components/parameters/clientid_in_header'
- $ref: '#/components/parameters/correlation_in_header'
Expand Down Expand Up @@ -1158,13 +1158,13 @@ components:
type: string
description: Unique ID of the requested ISO20022 XML camt.053 document.

path_transactionId:
path_entryId:
in: path
name: transactionId
name: entryId
required: true
schema:
type: string
description: ID of the transaction.
description: ID of the transaction entry.

cursor:
in: query
Expand Down

0 comments on commit aa3565d

Please sign in to comment.