Skip to content

Commit 83f4490

Browse files
committed
feat: Added a new query parameter Reference in the BankTransaction and Prepayment endpoint
1 parent ea73626 commit 83f4490

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

xero_accounting.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,6 +1255,20 @@ paths:
12551255
type: integer
12561256
- $ref: "#/components/parameters/unitdp"
12571257
- $ref: "#/components/parameters/pageSize"
1258+
- in: query
1259+
name: References
1260+
x-snake: references
1261+
description: Filter by a comma-separated list of References
1262+
style: form
1263+
explode: false
1264+
example: ""Ref1", "Ref2""
1265+
x-example-java: Arrays.asList("Ref1","Ref2")
1266+
x-example-php: ""Ref1", "Ref2""
1267+
x-example-csharp: new List<string>{"Ref1","Ref2"}
1268+
schema:
1269+
type: array
1270+
items:
1271+
type: string
12581272
responses:
12591273
"200":
12601274
description: Success - return response of type BankTransactions array with 0 to n BankTransaction
@@ -12591,6 +12605,20 @@ paths:
1259112605
type: array
1259212606
items:
1259312607
type: string
12608+
- in: query
12609+
name: References
12610+
x-snake: references
12611+
description: Filter by a comma-separated list of References
12612+
style: form
12613+
explode: false
12614+
example: ""Ref1", "Ref2""
12615+
x-example-java: Arrays.asList("Ref1","Ref2")
12616+
x-example-php: ""Ref1", "Ref2""
12617+
x-example-csharp: new List<string>{"Ref1","Ref2"}
12618+
schema:
12619+
type: array
12620+
items:
12621+
type: string
1259412622
responses:
1259512623
"200":
1259612624
description: Success - return response of type Prepayments array for all Prepayment

0 commit comments

Comments
 (0)