Hi,
I believe I am using SCIM 1.1 (gluu.scim..., rather than gluu.scim2...).
I tried including this in my json:
```
"customAttributes": [
{
"name": "gluuStatus",
"values": [
"active"
]
}
]
```
Which had no effect, and in my custom scripts (Configuration>Manage Custom Scripts>User Registration) I have set "enable user" to true.
Where should I be using the above suggested Java code to activate the user?
Thanks.
**EDIT**
For reference, this is how I am currently creating the user:
```
ScimClient client = getClient();
ScimResponse res = client.createPersonString(prop_json,"application/json");
```
Where prop_json, is the json properties file that is used to create the user.