Retrieve all Explored Endpoints
Retrieve explored endpoints discovered by Site Explorer for a Site. Use `ID_ASC` or `ID_DESC` to order by endpoint ID; the default is `ID_ASC`.
The response is paged over Core `FindExploredEndpointIds` followed by
`FindExploredEndpointsByIds`. Pagination metadata is returned in the
`X-Pagination` response header.
User must have authorization role with `PROVIDER_ADMIN` suffix.
Authentication
AuthorizationBearer
```
export JWT_BEARER_TOKEN="<jwt-bearer-token>"
# Example org name: "acme-inc
export ORG_NAME=<org-name>
# Use the JWT bearer token in your API request auth header:
curl -v -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_BEARER_TOKEN" https://nico-rest-api.nico.svc.cluster.local/v2/org/$ORG_NAME/nico/user/current
```
Path parameters
org
Name of the Org
Query parameters
siteId
ID of the Site
pageNumber
Page number of results returned
pageSize
Number of results per page
orderBy
Order results by endpoint ID
Allowed values:
Response headers
X-Pagination
Pagination result in JSON format
Response
Explored endpoints for the Site
address
BMC IP address used as the explored endpoint ID.
reportVersion
Version of the exploration report; increases when the report is updated.
explorationRequested
Whether the endpoint will be explored in the next Site Explorer run.
preingestionState
Current preingestion state for the endpoint.
lastRedfishBmcReset
Last BMC Redfish reset time.
lastIpmitoolBmcReset
Last BMC IPMI tool reset time.
lastRedfishReboot
Last BMC Redfish reboot time.
lastRedfishPowercycle
Last BMC Redfish power-cycle time.
pauseRemediation
When true, Site Explorer will not take remediation actions for Redfish errors.
report
Data gathered about an endpoint during site exploration.
Errors
400
Bad Request Error
403
Forbidden Error
404
Not Found Error
412
Precondition Failed Error
500
Internal Server Error
504
Gateway Timeout Error