Skip to content

Commit

Permalink
feat(xero_accounting.yaml): adds IDs query param to /banktransactions…
Browse files Browse the repository at this point in the history
…, /overpayments and /prepayments endpoint
  • Loading branch information
ronnel-santiago-xero committed Nov 8, 2024
1 parent 34213f6 commit 72da415
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions xero_accounting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1228,6 +1228,21 @@ paths:
type: integer
- $ref: '#/components/parameters/unitdp'
- $ref: '#/components/parameters/pageSize'
- in: query
name: IDs
x-snake: ids
description: Filter by a comma-separated list of BankTransactionIDs.
style: form
explode: false
example: '"00000000-0000-0000-0000-000000000000"'
x-example-java: Arrays.asList(UUID.fromString("00000000-0000-0000-0000-000000000000"))
x-example-php: '"00000000-0000-0000-0000-000000000000"'
x-example-csharp: new List<Guid>{Guid.Parse("00000000-0000-0000-0000-000000000000")};
schema:
type: array
items:
type: string
format: uuid
responses:
"200":
description: Success - return response of type BankTransactions array with 0 to n BankTransaction
Expand Down Expand Up @@ -11090,6 +11105,21 @@ paths:
type: integer
- $ref: '#/components/parameters/unitdp'
- $ref: '#/components/parameters/pageSize'
- in: query
name: IDs
x-snake: ids
description: Filter by a comma-separated list of OverpaymentIDs.
style: form
explode: false
example: '"00000000-0000-0000-0000-000000000000"'
x-example-java: Arrays.asList(UUID.fromString("00000000-0000-0000-0000-000000000000"))
x-example-php: '"00000000-0000-0000-0000-000000000000"'
x-example-csharp: new List<Guid>{Guid.Parse("00000000-0000-0000-0000-000000000000")};
schema:
type: array
items:
type: string
format: uuid
responses:
"200":
description: Success - return response of type Overpayments array with all Overpayments
Expand Down Expand Up @@ -12518,6 +12548,21 @@ paths:
type: integer
- $ref: '#/components/parameters/unitdp'
- $ref: '#/components/parameters/pageSize'
- in: query
name: IDs
x-snake: ids
description: Filter by a comma-separated list of PrepaymentIDs.
style: form
explode: false
example: '"00000000-0000-0000-0000-000000000000"'
x-example-java: Arrays.asList(UUID.fromString("00000000-0000-0000-0000-000000000000"))
x-example-php: '"00000000-0000-0000-0000-000000000000"'
x-example-csharp: new List<Guid>{Guid.Parse("00000000-0000-0000-0000-000000000000")};
schema:
type: array
items:
type: string
format: uuid
responses:
"200":
description: Success - return response of type Prepayments array for all Prepayment
Expand Down

0 comments on commit 72da415

Please sign in to comment.