User tags
Each user in Trivore Identity Service (TIS) can have a number of tags, which are used by external services for various purposes.
Tags can be added and removed by using the TIS Management UI or the REST
API /user/{userId} endpoint. In the UI, the tag editor can be found in
the user editor. For the latest information on the REST API endpoint,
see the API documentation for POST /api/rest/v1/user.
Each user can have up to 100 tags assigned to them and the maximum length of each tag is 100 characters. The tags can consist of any character, but they are automatically converted to lower case, so when a tag “My_TAG“ is created, it will be converted to “my_tag“. This applies to both UI and the REST API.
The user tags can be added and removed by any user or Management API client with the permission to modify users. Also, the user tags can be seen by any user or Management API client with permissions to view user accounts. Therefore, it should be kept in mind that the tags are visible and editable for other users and Management API clients and with suitable permissions.
It is recommended to use an application specific prefix for the
tags used by the application. For example, you can prefix all
the tags you create with xyz_ so the tags will end up something
like xyz_tag1 and xyz_another_tag.