Hi,
I'm currently attempting to create users into our Cisco ACS V5.6.0.22.4, using the REST API services. I can create/update delete a user entry fine, but I seem to be totally failing at setting attribute values that already pre-defined within the ACS.
The service calls come back with an OK status 204 but the attribute is still blank when the user is viewed in the management site. Is it possible to set these attributes during the create transaction?
I have tried to update the user once create, and again this does not work either.
What am I missing here?
Here is the XML payload I an sending on create:
<?xml version="1.0" encoding="utf-8"?>
<ns2:user xmlns:ns1="common.rest.mgmt.acs.nm.cisco.com" xmlns:ns2="identity.rest.mgmt.acs.nm.cisco.com">
<description>Test SSO User</description>
<identityGroupName>All Groups:SSO:Test</identityGroupName>
<name>AndyCTest13</name>
<ns1:attributeInfo>
<ns1:AttributeInfo>
<ns1:attributeName>Framed-IP-Address</ns1:attributeName>
<ns1:attributeValue>172.172.123.123</ns1:attributeValue>
</ns1:AttributeInfo>
</ns1:attributeInfo>
<changePassword>false</changePassword>
<dateExceedsEnabled>false</dateExceedsEnabled>
<enabled>true</enabled>
<password>************</password>
</ns2:user>
Thanks