Get Delegate User List
GET/getDelegateUserList
This API returns list of users that are allowed to be added as delegate for a parentuser in SSM.
The Authorization
must have Bearer
followed by Token
.
Mandatory params:
parentusername
Optional params:
max
, offset
,
searchCriteria
- example "t*" or "te" or "test" to search in username or firstname or lastname for the delegate user
Request
- application/json
Body
maxstring
Example:
2
parentusernamestring
Example:
acook
searchCriteriastring
Example:
d*
Responses
- 200
Get Delegate User List
Response Headers
Date
string
Server
string
Set-Cookie
string
X-Content-Type-Options
string
- application/json
- Schema
- Example (from schema)
- Get Delegate User List
Schema
Array [
]
displayCountstring
Example:
2
errorCodestring
Example:
0
msgstring
Example:
Success
result
object[]
firstnamestring
Example:
Damien
lastnamestring
Example:
Baliey
usernamestring
Example:
dbailey
totalCountstring
Example:
166
{
"displayCount": "2",
"errorCode": "0",
"msg": "Success",
"result": [
{
"firstname": "Damien",
"lastname": "Baliey",
"username": "dbailey"
},
{
"firstname": "Deanna",
"lastname": "Odonnell",
"username": "dodonnell"
}
],
"totalCount": "166"
}
{
"displayCount": "2",
"errorCode": "0",
"msg": "Success",
"result": [
{
"firstname": "Damien",
"lastname": "Baliey",
"username": "dbailey"
},
{
"firstname": "Deanna",
"lastname": "Odonnell",
"username": "dodonnell"
}
],
"totalCount": "166"
}