Feedback: LDAP mappings requests
Closed this issue · 0 comments
thomas-biesmans commented
Page https://redis.io/docs/latest/operate/rs/references/rest-api/requests/ldap_mappings/
FYI: a Post should use an integer as the role_uids. The Post example JSON; copied here as reference:
{
"name": "Admins",
"dn": "OU=ops.group,DC=redislabs,DC=com",
"email": "ops.group@redislabs.com",
"role_uids": ["1"]
}
should be:
{
"name": "Admins",
"dn": "OU=ops.group,DC=redislabs,DC=com",
"email": "ops.group@redislabs.com",
"role_uids": [1]
}