getPolicies #
Returns roles associated to this security policy.
Return Value #
Returns an array of roles linked to this security policy.
Usage #
for(JSONObject policy : profile.getPolicies()) {
}
Callback response
[
{
"roleId": "<role name1>",
"restrictedTo": {
"index": "<some index>",
"collections": ["<collection1>", "<collection2>", "<...>"]
}
},
{
"roleId": "<role name2>"
},
{
"roleId": "<role name3>",
"restrictedTo": {
"index": "<some other index>",
"collections": ["<collection>"]
}
}
]
Edit this page on Github(opens new window)