From e743e0a6836df72c74828384d8cd8bc25f67fd4f Mon Sep 17 00:00:00 2001 From: vigneshk-tw Date: Mon, 4 Nov 2024 10:38:15 +0530 Subject: [PATCH] feat: add query param --- xero_accounting.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/xero_accounting.yaml b/xero_accounting.yaml index 278647155..8c68b5038 100644 --- a/xero_accounting.yaml +++ b/xero_accounting.yaml @@ -1339,6 +1339,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