Hello
I was able to fairly easily create a new user in CloudSuite OS using with /ifsservice/usermgt/v2/admin/users using POST
The request body for /ifsservice/usermgt/v2/admin/users accepts a userlist where an id can be specified, but it just returns a message that the user already exists when using POST and the example for using PATCH is not clear at all how the request body should be specified (shown below).
{
"userlist": [
{
"id": "string",
"operations": [
{
"op": "string",
"path": "string",
"value": [
{
"value": "string",
"currentPassword": "string"
}
]
}
]
}
]
}
Where can I find the valid values for these properties?