Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions xero_accounting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1255,6 +1255,20 @@ paths:
type: integer
- $ref: "#/components/parameters/unitdp"
- $ref: "#/components/parameters/pageSize"
- in: query
name: References
x-snake: references
description: Filter by a comma-separated list of References
style: form
explode: false
example: ""Ref1", "Ref2""
x-example-java: Arrays.asList("Ref1","Ref2")
x-example-php: ""Ref1", "Ref2""
x-example-csharp: new List<string>{"Ref1","Ref2"}
schema:
type: array
items:
type: string
responses:
"200":
description: Success - return response of type BankTransactions array with 0 to n BankTransaction
Expand Down Expand Up @@ -12591,6 +12605,20 @@ paths:
type: array
items:
type: string
- in: query
name: References
x-snake: references
description: Filter by a comma-separated list of References
style: form
explode: false
example: ""Ref1", "Ref2""
x-example-java: Arrays.asList("Ref1","Ref2")
x-example-php: ""Ref1", "Ref2""
x-example-csharp: new List<string>{"Ref1","Ref2"}
schema:
type: array
items:
type: string
responses:
"200":
description: Success - return response of type Prepayments array for all Prepayment
Expand Down
Loading