listenerservices.listEncryptionStatuses

GET https://relay.bluejeans.com/api/listenerservices/encryptionstatus
Validate the configuration of Enhanced Encryption by checking to see if all provisioned Listener Services can successfully decrypt passwords encrypted by the Enterprise's public key.
GET /api/listenerservices/encryptionstatus HTTP/1.1 HTTP/1.1 200 OK Content-Type: application/json [ { "listenerServiceId": "4fb31e2a3a8cd15549ed2bfb", "encryptionValid": true }, { "listenerServiceId": "4fb31e2a3a8cd15549ed2bfc", "encryptionValid": false } ]

outputs

Array of objects, where each object has two fields: the ID of a Listener Service (listenerServiceId), and a boolean (encryptionValid) which is true if the Listener Service was able to successfully decrypt the test password (and false otherwise). If Enhanced Encryption is disabled because the Enterprise has no public key, every encryptionValid value will be false. If the Enterprise has no Listener Services provisioned, an empty array [] will be returned. The status code is always 200, even if some Listener Services failed to decrypt.
application/json List<ListenerServiceEncryptionStatus>