Fetch user settings

To fetch the current user settings in the extension

Syntax

var data =
{
operation: "get",
properties: [key1,  key2 ...]
"keys" : <keys used to store> ; // optional
}

 

Sample request

Copieddata = 
{
               operation: "get",
               properties: ["networkid", "posturl", "dummyjson"]
   };
WriterClient.dispatch("user_settings", data).then(function(response) 
{
   .......
 });