Skip to content

Commit 36244ec

Browse files
committed
feat: Added a new query parameter Reference in the BankTransaction and Prepayment endpoint
1 parent e952d0b commit 36244ec

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
@@ -12546,6 +12560,20 @@ paths:
1254612560
type: array
1254712561
items:
1254812562
type: string
12563+
- in: query
12564+
name: References
12565+
x-snake: references
12566+
description: Filter by a comma-separated list of References
12567+
style: form
12568+
explode: false
12569+
example: ""Ref1", "Ref2""
12570+
x-example-java: Arrays.asList("Ref1","Ref2")
12571+
x-example-php: ""Ref1", "Ref2""
12572+
x-example-csharp: new List<string>{"Ref1","Ref2"}
12573+
schema:
12574+
type: array
12575+
items:
12576+
type: string
1254912577
responses:
1255012578
"200":
1255112579
description: Success - return response of type Prepayments array for all Prepayment

0 commit comments

Comments
 (0)