From ticket 2678:
> If you are using SCIM 2.0, this is a known bug in v2.4.2. This will be fixed in v2.4.4.
>
> If you are using SCIM 1.1, you can automatically activate the user by adding "gluuStatus = active" during user creation:
```
// Activate
ScimCustomAttributes scimCustomAttributes = new ScimCustomAttributes();
scimCustomAttributes.setName("gluuStatus");
scimCustomAttributes.setValues(Arrays.asList(new String[]{"active"}));
scimPerson.setCustomAttributes(Arrays.asList(scimCustomAttributes));
```
> Is there a way to make a user active through SCIM 2.0 after creation?
>
> Unfortunately there is none if it is through the API. Outside options are to update it via the oxTrust GUI or LDAP.
>