GET api/GetUserList?strSRPToken={strSRPToken}&strUserRole={strUserRole}
GetUserList by user role.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strSRPToken |
Token provided by FXS |
string |
Required |
| strUserRole |
User Role |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserData| Name | Description | Type | Additional information |
|---|---|---|---|
| strFullName |
Full Name - Last Name + First Name |
string |
None. |
| strUserName |
LoginID |
string |
None. |
| strEmail |
Email address |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"strFullName": "sample string 1",
"strUserName": "sample string 2",
"strEmail": "sample string 3"
},
{
"strFullName": "sample string 1",
"strUserName": "sample string 2",
"strEmail": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfUserData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CAGRASWebApi.Models">
<UserData>
<strEmail>sample string 3</strEmail>
<strFullName>sample string 1</strFullName>
<strUserName>sample string 2</strUserName>
</UserData>
<UserData>
<strEmail>sample string 3</strEmail>
<strFullName>sample string 1</strFullName>
<strUserName>sample string 2</strUserName>
</UserData>
</ArrayOfUserData>