System Administration >
Monitoring
>
Error Resolver
Fetches metadata about the given error_id
Returns some metadata about the given error_id. This includes
information of whether there is a resolver present for the
given error_id and its associated user input data
Request:
Method:
GET
URI Path(s):
/api/v1/error-resolver/<error_id>
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
n/a
Example Request:
GET https://<nsx-mgr>/api/v1/error-resolver/1002
Successful Response:
Response Code:
200 OK
Response Headers:
Content-type: application/json
Response Body:
ErrorResolverInfo
+
ErrorResolverInfo
(
schema
)
Name
Description
Type
Notes
error_id
The error id for which metadata information is needed
integer
Required
resolver_present
Indicates whether there is a resolver associated with the error or not
boolean
Required
user_metadata
User supplied metadata that might be required by the resolver
ErrorResolverUserMetadata
Example Response:
{ "user_metadata": { "user_input_list": [ { "property_value": "1000", "property_name": "connectTimeout", "data_type": "NUMBER" } ] }, "error_id": 1002, "resolver_present": true }
Required Permissions:
read
Feature:
error_resolver
Additional Errors:
404 Not Found
301 Moved Permanently
307 Temporary Redirect
400 Bad Request
403 Forbidden
409 Conflict
500 Internal Server Error
503 Service Unavailable