Hi
i created a custom attribute in ise for internal user objects. Now i want to create internal users via API and populate also the custom attribute. The user is created (Response HTTP 201) but the custom attribute is not populated. The field in the gui is empty.
Came along this bug https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvm01627/?rfs=iqvred
The version i tried is under the fixed ones but its not working. Has anybody done this successfully ?
Here is my request (from postman) => Framed-route is the custom attribute
- curl --location --request POST 'https://198.18.133.27:9060/ers/config/internaluser' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'ERS-Media-Type: identity.internaluser.1.2' \
--header 'Authorization: Basic yyyyyyyyy' \
--header 'Cookie: APPSESSIONID=F05C7C72FDB6DA9637DD8852B83405F9; JSESSIONIDSSO=6C6F699AF25489A46120809D8D57B257' \
--data-raw '{
"InternalUser": {
"name": "xxxxxx",
"description": "description",
"enabled": true,
"password": "xxxxxxxx",
"customAttributes": {
"Framed-route": "yyyyyyy"
},
"passwordIDStore": "Internal Users"
}
}'
Thanks a lot