GetUsers
Retrieve users’ information.
Parameters
Details
If a user does not have permissions to retrieve other users’s information, only information of the authenticated user will be retrieved.
Examples
Retrieve all user information for users “john” and “frank”, using GetUsers command:
[ {
"GetUsers" : {
"users": ["john", "frank"],
"roles": True,
"emails": True,
}
} ]
# Response
[ {
"GetUsers": {
"john": {
"roles": ["researcher", "user"],
"email": "jfk@aperturedata.io"
},
"frank": {
"roles": ["architect"],
"email": "fdr@aperturedata.io"
}
}
}]