GET User/GetUsersAndRoles
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AccessorInfoName | Description | Type | Additional information |
---|---|---|---|
Login |
The Login name for the user |
string |
None. |
FullName |
The first name and Last name of User and returns role for roles type |
string |
None. |
Type |
Type of the Name_us value it can be either Role or User |
string |
None. |
Status |
Identifies the restricted user per folder. |
string |
None. |
AccessorId | integer |
None. |
|
UserInfoId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Login": "sample string 1", "FullName": "sample string 2", "Type": "sample string 3", "Status": "sample string 4", "AccessorId": 1, "UserInfoId": 1 }, { "Login": "sample string 1", "FullName": "sample string 2", "Type": "sample string 3", "Status": "sample string 4", "AccessorId": 1, "UserInfoId": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfAccessorInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.User"> <AccessorInfo> <AccessorId>1</AccessorId> <FullName>sample string 2</FullName> <Login>sample string 1</Login> <Status>sample string 4</Status> <Type>sample string 3</Type> <UserInfoId>1</UserInfoId> </AccessorInfo> <AccessorInfo> <AccessorId>1</AccessorId> <FullName>sample string 2</FullName> <Login>sample string 1</Login> <Status>sample string 4</Status> <Type>sample string 3</Type> <UserInfoId>1</UserInfoId> </AccessorInfo> </ArrayOfAccessorInfo>