Get actions state

GET /api/endpoint/action/state

Get a response actions state, which reports whether encryption is enabled.

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • body object Required
      Hide body attribute Show body attribute object
GET /api/endpoint/action/state
curl \
 --request GET 'http://localhost:5622/api/endpoint/action/state' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "body": {
    "data": {
      "canEncrypt": true
    }
  }
}