Skip to content

Commit 0746e53

Browse files
feat(xero_accounting.yaml): adds IDs query param to /banktransactions endpoint
1 parent e2bf471 commit 0746e53

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

xero_accounting.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,21 @@ paths:
13391339
type: integer
13401340
- $ref: '#/components/parameters/unitdp'
13411341
- $ref: '#/components/parameters/pageSize'
1342+
- in: query
1343+
name: IDs
1344+
x-snake: ids
1345+
description: Filter by a comma-separated list of BankTransactionIDs.
1346+
style: form
1347+
explode: false
1348+
example: '"00000000-0000-0000-0000-000000000000"'
1349+
x-example-java: Arrays.asList(UUID.fromString("00000000-0000-0000-0000-000000000000"))
1350+
x-example-php: '"00000000-0000-0000-0000-000000000000"'
1351+
x-example-csharp: new List<Guid>{Guid.Parse("00000000-0000-0000-0000-000000000000")};
1352+
schema:
1353+
type: array
1354+
items:
1355+
type: string
1356+
format: uuid
13421357
responses:
13431358
'200':
13441359
description: Success - return response of type BankTransactions array with 0 to n BankTransaction

0 commit comments

Comments
 (0)