Returns all aliases of the specified user from all alias-enabled applications
string
returns all aliases of the specified user
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases'
Sets the alias for the given username in all the applications, replacing the previous alias set for the same username, if they exist. Applications that are not included in the map will have their aliases removed
string
map of aliases keyed by application ID
string
returned if aliases have been updated
1
2
3
4
5
6
7
curl --request PUT \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases' \
--header 'Content-Type: application/json' \
--data '{
"applicationid-1": "Alias-1",
"applicationid-3": "Alias-3"
}'
Removes all aliases of the specified user from all applications, even from applications where aliasing is disabled
string
returned if aliases have been removed
1
2
curl --request DELETE \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases'
Returns the user's alias in the specified application
integer
Requiredstring
the operation succeeded and the alias was retrieved
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases/{applicationId}/alias'
Sets the user's alias in the specified application
integer
Requiredstring
new alias for the user
string
the operation succeeded and the alias was updated
1
2
curl --request PUT \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases/{applicationId}/alias'
Removes user's alias in a specified application
integer
Requiredstring
the operation succeeded and the alias has been removed
1
2
curl --request DELETE \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases/{applicationId}/alias'
Returns user's username in a specified application
integer
Requiredstring
returns the username behind the alias (if exists)
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/aliases/{applicationId}/username'
Rate this page: