Skip to main content

Search User

API to search the users.

Resource Informations

NameValue
Requires authentication?Yes
Rate limited?No

Request

Request headers

KeyValue
AuthorizationBearer token
Content-Typeapplication/json

HTTP request URL for SSMS

GET https://{tenantId}.{hostname}/digitanium/v4/users/search?key={search_keyword}

HTTP request URL for SHIFT

GET https://{hostname}/auth/realms/{tenantId}/v3_user/search?key={search_keyword}
note

API requests must be made over https. Calls made over plain http will fail.

Parameters

Parameter NameTypeDescription
KeyStringIt can be a search parameter and will search over username, firstname, lastname and email.

Request body

No request body fields required.

Response

Field NameTypeDescription
messageStringThe message explains the result of the API call. Refer to Response status Information for details.
statusStringThe status of the API call. Refer Response status Information for details.
SubsystemStringSubsystem categorizes the type of API that has been called. Refer to Subsystem details for details.
dataObjectUser details
userListarraylist of users matching criteria.
pageObjectPaging (dividing a document into discrete pages) information.

Sample Response

{
"message": "Users fetched successfully",
"status": "Success",
"subSystem": 5,
"data": {
"userList": [
{
"username": "ecosport",
"enabled": false,
"emailVerified": false,
"attributes": {},
"requiredActions": [],
"admin": false
}
],
"page": {
"pageSize": 20,
"totalRecords": 22,
"totalPages": 1,
"currentPage": 1
}
}
}

Response Status Information

Status CodeStatusMessage
200SuccessUsers fetched successfully
401UnauthorizedHTTP 401 Unauthorized
404USER_NOT_FOUNDUser does not exist