6.4 Get Locking Key
bayunCore.getLockingKey(
"<sessionId>",
BayunCore.EncryptionPolicy.GROUP,
BayunCore.KeyGenerationPolicy.STATIC,
"<groupId>"
)
.then(result => {
console.log("Response received for getLockingKey.");
console.log(result);
})
.catch(error => {
console.log("Error caught");
console.log(error);
});Last updated