From 7d02caf69d98e382c1778ca3a8c99ef59409ac3c Mon Sep 17 00:00:00 2001 From: ArjunSinghILX Date: Tue, 2 Dec 2025 20:20:54 +0530 Subject: [PATCH 1/2] [ILX-57952] Add detail about mandatory param for QueryResult API --- source/includes/acts/get_api.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/includes/acts/get_api.md b/source/includes/acts/get_api.md index a4cfdabfcc1..eaaa0d069a0 100644 --- a/source/includes/acts/get_api.md +++ b/source/includes/acts/get_api.md @@ -1131,6 +1131,7 @@ operationTypes | int | The type of operational data ### 15. Query Results The QueryResults API end point will allow the user to run the views saved in Query view tables and returns the dynamic results based on the specific query view id value. The QueryResults endpoint supports pagination. +Request must contain exactly one single queryViewId as a query parameter. > Example Request @@ -1207,11 +1208,11 @@ IRestResponse response = client.Execute(request); **Query parameters** -Attribute | Type | Description ---------- | ---- | ----------- -PageNumber | int | Page number of the results to fetch. -PageSize | int | The number of results per page -queryViewId | int | The unique identifier for this query view record +Attribute | Type | Required | Description +--------- | ---- | -------- | ----------- +PageNumber | int | No |Page number of the results to fetch. +PageSize | int | No | The number of results per page +queryViewId | int | Yes | The unique identifier for this query view record ### 16. Regulation Table This section elaborates on how to obtain data from the Regulation table using the designated API endpoint. The endpoint allows you to retrieve all data from the Regulation table or selectively acquire information by providing the Regulation ID. Moreover, the Regulation endpoint features pagination to facilitate efficient management of substantial datasets. From bc3698825cc6d339a0977a7f983e47445ae68bb2 Mon Sep 17 00:00:00 2001 From: ArjunSinghILX Date: Tue, 2 Dec 2025 20:23:09 +0530 Subject: [PATCH 2/2] [ILX-57952] Add whitespace to a table in md --- source/includes/acts/get_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/includes/acts/get_api.md b/source/includes/acts/get_api.md index eaaa0d069a0..5a7b492b30e 100644 --- a/source/includes/acts/get_api.md +++ b/source/includes/acts/get_api.md @@ -1210,7 +1210,7 @@ IRestResponse response = client.Execute(request); Attribute | Type | Required | Description --------- | ---- | -------- | ----------- -PageNumber | int | No |Page number of the results to fetch. +PageNumber | int | No | Page number of the results to fetch. PageSize | int | No | The number of results per page queryViewId | int | Yes | The unique identifier for this query view record