You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ce/docs/AssetControllerApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
|[**assignAssetToEdge**](#assignAssetToEdge)|**POST** /api/edge/{edgeId}/asset/{assetId} | Assign asset to edge (assignAssetToEdge) |
7
7
|[**assignAssetToPublicCustomer**](#assignAssetToPublicCustomer)|**POST** /api/customer/public/asset/{assetId} | Make asset publicly available (assignAssetToPublicCustomer) |
|[**findByQuery4**](#findByQuery4)|**POST** /api/assets | Find related assets (findByQuery) |
9
+
|[**findAssetsByQuery**](#findAssetsByQuery)|**POST** /api/assets | Find related assets (findAssetsByQuery) |
10
10
|[**getAssetById**](#getAssetById)|**GET** /api/asset/{assetId} | Get Asset (getAssetById) |
11
11
|[**getAssetInfoById**](#getAssetInfoById)|**GET** /api/asset/info/{assetId} | Get Asset Info (getAssetInfoById) |
12
12
|[**getAssetTypes**](#getAssetTypes)|**GET** /api/asset/types | Get Asset Types (getAssetTypes) |
@@ -106,11 +106,11 @@ Deletes the asset and all the relations (from and to the asset). Referencing non
106
106
null (empty response body)
107
107
108
108
109
-
## findByQuery4
109
+
## findAssetsByQuery
110
110
111
-
> List<Asset> findByQuery4(assetSearchQuery)
111
+
> List<Asset> findAssetsByQuery(assetSearchQuery)
112
112
113
-
Find related assets (findByQuery)
113
+
Find related assets (findAssetsByQuery)
114
114
115
115
Returns all assets that are related to the specific entity. The entity id, relation type, asset types, depth of the search, and other query parameters defined using complex 'AssetSearchQuery' object. See 'Model' tab of the Parameters for more info.
Copy file name to clipboardExpand all lines: ce/docs/CalculatedFieldControllerApi.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
|[**getCalculatedFieldsByEntityIdV2**](#getCalculatedFieldsByEntityIdV2)|**GET** /api/calculatedField/{entityType}/{entityId} | Get Calculated Fields by Entity Id (getCalculatedFieldsByEntityIdV2) |
10
10
|[**getLatestCalculatedFieldDebugEvent**](#getLatestCalculatedFieldDebugEvent)|**GET** /api/calculatedField/{calculatedFieldId}/debug | Get latest calculated field debug event (getLatestCalculatedFieldDebugEvent) |
11
11
|[**saveCalculatedField**](#saveCalculatedField)|**POST** /api/calculatedField | Create Or Update Calculated Field (saveCalculatedField) |
12
-
|[**testScript1**](#testScript1)|**POST** /api/calculatedField/testScript | Test Script expression |
12
+
|[**testCalculatedFieldScript**](#testCalculatedFieldScript)|**POST** /api/calculatedField/testScript | Test Script expression |
13
13
14
14
15
15
@@ -172,9 +172,9 @@ Creates or Updates the Calculated Field. When creating calculated field, platfor
Copy file name to clipboardExpand all lines: ce/docs/DashboardControllerApi.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@
16
16
|[**getHomeDashboardInfo**](#getHomeDashboardInfo)|**GET** /api/dashboard/home/info | Get Home Dashboard Info (getHomeDashboardInfo) |
17
17
|[**getMaxDatapointsLimit**](#getMaxDatapointsLimit)|**GET** /api/dashboard/maxDatapointsLimit | Get max data points limit (getMaxDatapointsLimit) |
18
18
|[**getServerTime**](#getServerTime)|**GET** /api/dashboard/serverTime | Get server time (getServerTime) |
19
-
|[**getTenantDashboards**](#getTenantDashboards)|**GET** /api/tenant/{tenantId}/dashboards | Get Tenant Dashboards by System Administrator (getTenantDashboards) |
20
-
|[**getTenantDashboards1**](#getTenantDashboards1)|**GET** /api/tenant/dashboards | Get Tenant Dashboards (getTenantDashboards) |
19
+
|[**getTenantDashboards**](#getTenantDashboards)|**GET** /api/tenant/dashboards | Get Tenant Dashboards (getTenantDashboards) |
20
+
|[**getTenantDashboardsByTenantId**](#getTenantDashboardsByTenantId)|**GET** /api/tenant/{tenantId}/dashboards | Get Tenant Dashboards by System Administrator (getTenantDashboardsByTenantId) |
21
21
|[**getTenantHomeDashboardInfo**](#getTenantHomeDashboardInfo)|**GET** /api/tenant/dashboard/home/info | Get Tenant Home Dashboard Info (getTenantHomeDashboardInfo) |
22
22
|[**removeDashboardCustomers**](#removeDashboardCustomers)|**POST** /api/dashboard/{dashboardId}/customers/remove | Remove the Dashboard Customers (removeDashboardCustomers) |
23
23
|[**saveDashboard**](#saveDashboard)|**POST** /api/dashboard | Create Or Update Dashboard (saveDashboard) |
@@ -306,20 +306,20 @@ Get the server time (milliseconds since January 1, 1970 UTC). Used to adjust vie
Get Tenant Dashboards by System Administrator (getTenantDashboards)
311
+
Get Tenant Dashboards (getTenantDashboards)
312
312
313
-
Returns a page of dashboard info objects owned by tenant. The Dashboard Info object contains lightweight information about the dashboard (e.g. title, image, assigned customers) but does not contain the heavyweight configuration JSON. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. Available for users with 'SYS_ADMIN' authority.
313
+
Returns a page of dashboard info objects owned by the tenant of a current user. The Dashboard Info object contains lightweight information about the dashboard (e.g. title, image, assigned customers) but does not contain the heavyweight configuration JSON. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. Available for users with 'TENANT_ADMIN' authority.
Get Tenant Dashboards by System Administrator (getTenantDashboardsByTenantId)
337
337
338
-
Returns a page of dashboard info objects owned by the tenant of a current user. The Dashboard Info object contains lightweight information about the dashboard (e.g. title, image, assigned customers) but does not contain the heavyweight configuration JSON. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. Available for users with 'TENANT_ADMIN' authority.
338
+
Returns a page of dashboard info objects owned by tenant. The Dashboard Info object contains lightweight information about the dashboard (e.g. title, image, assigned customers) but does not contain the heavyweight configuration JSON. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. Available for users with 'SYS_ADMIN' authority.
0 commit comments