Application parameters
Purpose
These commands are used to perform actions related to application parameters.
Request URL
Obtain Application parameters
Used to retrieve parameters used to configure the application.
clientsdk.dispatch("params", {] operation: "get", params:paramsList }).then(function(mailObj){ });
*param name as array
Copiedclientsdk.dispatch("params", { operation: "get", params:["userId", "userName"] }).then(function(mailObj){ });Obtain application parameter
Sample Response
Copied{
   data: { [
                  {
                      "paramName": "userId", 
                      "paramValue": "54367"
                  },
                  {
                      "paramName": "userName", 
                      "paramValue": "Paula"
                   }
             ] }
}