Managing CTERA Portal Users > Removing an Addon from a Portal User
Removing an Addon from a Portal User
Remove an addon from a CTERA Portal user.
API
admin/api/users
Or, for an Active Directory user:
admin/api/domains/domain_name/adUsers
URI
{BASE_URL}/users/user_ID
Or, for an Active Directory user:
{BASE_URL}/domains/domain_name/adUsers/user_ID
HTTP Method
POST
Request Content-Type
application/xml
Request Body
<val>external_item_ID</val>
Expected Response status
200 OK
Object Method
removeAddon
Java Example
To remove the addon with the external item ID 10001 from the user jsmith, use the following:
invokeMethod(httpClient, baseUrl+ "/users/jsmith", "removeAddon", "<val>10001</val>")