Endpoint
/v1/ad/dismiss-error
POST
Dismiss the last error recorded from a join, reconfigure, or leave operation.
Parameters
This resource has no parameters.
Response
Codes
Code |
Description |
200 |
Return value on success |
Schema
{
"description": "ad_domain_monitor",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"LEAVE_SUCCEEDED",
"JOIN_SUCCEEDED",
"LEAVE_FAILED",
"JOIN_FAILED",
"LEAVE_IN_PROGRESS",
"JOIN_IN_PROGRESS",
"RECONFIGURE_IN_PROGRESS"
],
"description": "status:\n * `JOIN_FAILED` - JOIN_FAILED,\n * `JOIN_IN_PROGRESS` - JOIN_IN_PROGRESS,\n * `JOIN_SUCCEEDED` - JOIN_SUCCEEDED,\n * `LEAVE_FAILED` - LEAVE_FAILED,\n * `LEAVE_IN_PROGRESS` - LEAVE_IN_PROGRESS,\n * `LEAVE_SUCCEEDED` - LEAVE_SUCCEEDED,\n * `RECONFIGURE_IN_PROGRESS` - RECONFIGURE_IN_PROGRESS"
},
"last_error": {
"description": "last_error",
"type": "object",
"properties": {
"module": {
"description": "module",
"type": "string"
},
"error_class": {
"description": "error_class",
"type": "string"
},
"description": {
"description": "description",
"type": "string"
},
"stack": {
"description": "stack",
"type": "string"
},
"user_visible": {
"description": "user_visible",
"type": "boolean"
}
}
},
"last_action_time": {
"description": "last_action_time",
"type": "string"
},
"id": {
"description": "id",
"type": "number"
},
"domain": {
"description": "domain",
"type": "string"
},
"domain_netbios": {
"description": "domain_netbios",
"type": "string"
},
"ou": {
"description": "ou",
"type": "string"
},
"search_trusted_domains": {
"description": "search_trusted_domains",
"type": "boolean"
},
"use_ad_posix_attributes": {
"description": "use_ad_posix_attributes",
"type": "boolean"
},
"base_dn": {
"description": "base_dn",
"type": "string"
}
}
}