In order to create a user in VDS via Postman with special characters such as the '+' symbol, you need to escape the character with double backslashes as follows:
{ "params" :{
"dn" : "uid=test\\+user,o=enterprise",
"attributes" : { "objectclass" : [ "top",
"person",
"organizationalPerson",
"inetOrgPerson" ],
"cn" : "tsst1",
"userPassword" : "secret" } }
}
Comments
Please sign in to leave a comment.