Skip to main content
Version: 5.7.0

ReadPropertiesInCategories

Read all the global properties of the app that exist in any of the categories provided.

ServiceOperation
globalAppREAD_PROPERTIES_IN_CATEGORIES

Method Parameters

ParameterDescription
categoriesList of categories to retrieve the global properties.

Usage

http://localhost:3000
string[] categories = { "cName1", "cName2" };

SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.GlobalAppService.ReadPropertiesInCategories(categories, successCallback, failureCallback);
JSON Response
{
"status":200,
"data":{
"pName1": {
"name": "pName1",
"value": "value1"
},
"pName2": {
"name": "pName2",
"value": "value2"
}
}
}