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
[**Get-V2025ManagedClient**](#get-managed-client) | **GET**`/managed-clients/{id}` | Get managed client
25
+
[**Get-V2025ManagedClientHealthIndicators**](#get-managed-client-health-indicators) | **GET**`/managed-clients/{id}/health-indicators` | Get managed client health indicators
25
26
[**Get-V2025ManagedClientStatus**](#get-managed-client-status) | **GET**`/managed-clients/{id}/status` | Get managed client status
26
27
[**Get-V2025ManagedClients**](#get-managed-clients) | **GET**`/managed-clients` | Get managed clients
200 | Response with the managed client health indicators, with the given ID. | ManagedClientHealthIndicators
191
+
400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto
192
+
401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | ListAccessProfiles401Response
193
+
403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto
194
+
404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto
195
+
429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | ListAccessProfiles429Response
196
+
500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto
197
+
198
+
### HTTP request headers
199
+
-**Content-Type**: Not defined
200
+
-**Accept**: application/json
201
+
202
+
### Example
203
+
```powershell
204
+
$Id = "4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7" # String | Managed client ID to get health indicators for.
205
+
206
+
# Get managed client health indicators
207
+
208
+
try {
209
+
Get-V2025ManagedClientHealthIndicators -Id $Id
210
+
211
+
# Below is a request that includes all optional parameters
212
+
# Get-V2025ManagedClientHealthIndicators -Id $Id
213
+
} catch {
214
+
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025ManagedClientHealthIndicators"
0 commit comments