Skip to content

Commit 38a2926

Browse files
Merge pull request #24 from AvePoint/elements-hotfix
[AOPS-56411]elements hotfix
2 parents 4da173a + 14fd87a commit 38a2926

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

docs/elements/change-log.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,12 @@ This document provides a detailed log of changes, updates, and enhancements made
4343
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/users/{userId}/office` for updating the office information of a specific user in a customer's tenant.
4444
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/users/{userId}/office-information` for updating the office location information of a specific user in a customer's tenant.
4545
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/users/{userId}/password-setting` for updating the password setting of a specific user in a customer's tenant.
46+
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/overview/security/compliances/workflows` for retrieving information of workflows in a customer's tenant.
47+
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/overview/security/compliances/actions` for retrieving the risky action count in a customer's tenant.
48+
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/overview/security/compliances/workflows/{workflowId}` for retrieving compliance information of a specific workflow in a customer's tenant.
49+
- `/partner/external/v3/um/customers/{customerId}/tenants/{tenantId}/overview/security/compliances/signins` for retrieving users' sign-in information in a customer's tenant.
4650
- Introduced new endpoints for workspace management.
4751
- `/partner/external/wm/customers/{customerId}/tenants/{tenantId}/overview/workspace` for retrieving the workspace overview statistics of a specific tenant.
4852
- `/partner/external/wm/customers/{customerId}/tenants/{tenantId}/overview/data-protection/compliance-rate` for retrieving the compliance statistics of workspaces for a specific tenant.
4953
- `/partner/external/wm/customers/{customerId}/tenants/{tenantId}/overview/dspm/insights` for retrieving the data security posture statistics of a specific tenant.
50-
- `/partner/external/wm/customers/{customerId}/tenants/{tenantId}/overview/data-protection/ransomware-detetion` for retrieving the data protection statistics of a specific tenant.
54+
- `/partner/external/wm/customers/{customerId}/tenants/{tenantId}/overview/data-protection/ransomware-detection` for retrieving the data protection statistics of a specific tenant.

docs/elements/user-management/risky_public_api/get-compliance-category.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If the request has been successfully processed, a 200 OK response will be return
6969
{
7070
"last7DayFixCount": 8, // The number of fixed risky actions in last 7 days
7171
"riskUserCount": 12, // The number of users who trigger the risk based on the workflow
72-
"items": [
72+
"data": [
7373
{
7474
"userDisplayName": "Mark Kevin", // The display name of the risky user
7575
"userPrincipalName": "mark@domain.onmicrosoft.com", // The user principal name of the risky user
@@ -94,8 +94,10 @@ If the request has been successfully processed, a 200 OK response will be return
9494
]
9595
}
9696
],
97-
"totalCount": 1, // The current display page
98-
"pageSize": 50, // The number of objects on the display page
99-
"pageIndex": 1 // The total number of objects matching the query parameters
97+
"metadata": {
98+
"pageIndex": 1, // The total number of objects matching the query parameters
99+
"pageSize": 50, // The number of objects on the display page
100+
"totalCount": 5 // The current display page
101+
}
100102
}
101103
```

docs/elements/user-management/risky_public_api/get-risk-analyze-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Retrieve Workflow Information
22

3-
Use this API to retrieve inforamtion of workflows in a customer's tenant.
3+
Use this API to retrieve information of workflows in a customer's tenant.
44

55
## Permission
66

0 commit comments

Comments
 (0)