Retrieve MLE Configuration for Target
GET/targets/:id/mle/
Returns the current Message Level Encryption (MLE) configuration status for the target.
Request
Path Parameters
id stringrequired
Responses
- 200
- 403
- 404
- application/json
- Schema
- Example (from schema)
Schema
configured booleanrequired
Indicates if MLE is configured for the target.
enabled booleanrequired
Indicates if MLE is currently enabled for the target.
key_id stringnullablerequired
The Key ID for MLE configuration.
scope string[]nullablerequired
List of API paths where MLE is applied.
{
"configured": true,
"enabled": true,
"key_id": "string",
"scope": [
"string"
]
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "You do not have permission to perform this action."
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Not found."
}
Loading...