Hi @bsr78033597
You can use Query builder path query to access user path by login ID. Find the example below
curl -u admin:admin "http://localhost:4502/bin/querybuilder.json?path=/home/users&property=rep:authorizableId&property.value=admin"
The query will return data in json format like
{
"success": true,
"results": 1,
"total": 1,
"more": false,
"offset": 0,
"hits": [
{
"path": "/home/users/f/fKws0F07AYaqkqiiKTQs",
"excerpt": "",
"name": "fKws0F07AYaqkqiiKTQs",
"title": "fKws0F07AYaqkqiiKTQs",
"created": "2020-03-26 13:15:40"
}
]
}
Hope it helps!
Thanks!
Nupur