Hi Jose,
thanks for the quick reply:
here's my request:
```
.....
String include = "userName, password, displayName, urn:ietf:params:scim:schemas:extension:gluu:2.0:User:scimCustom";
.....
UserResource newUser = new UserResource();
newUser.setActive(false);
newUser.setUserName(****);
newUser.setPassword(****);
newUser.setDisplayName(****);
CustomAttributes cAttribute = new CustomAttributes(USER_EXT_SCHEMA_ID);
imsiAttribute.setAttribute("scimCustom", ****);
newUser.addCustomAttributes(cAttribute);
Response createResponse = client.createUser(newUser, include, null);
```
and the response:
```
response: {"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],"id":"@!0AA1.9602.378B.D2AB!0001!135C.1AC0!0000!2916.5FB1.471C.E492","userName":"20834123456789","displayName":"Device 2083****6789"}
```
when trying to obtain the custom attributes through: `user.getCustomAttributes(USER_EXT_SCHEMA_ID)` it gives null.
Thanks again,