GET api/TempUsers
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TempUser| Name | Description | Type | Additional information |
|---|---|---|---|
| USER_ID | integer |
None. |
|
| USER_ROLE_ID | integer |
None. |
|
| USER_ROLE | string |
None. |
|
| USERNAME | string |
None. |
|
| FNAME | string |
None. |
|
| MNAME | string |
None. |
|
| LNAME | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"USER_ID": 1,
"USER_ROLE_ID": 2,
"USER_ROLE": "sample string 3",
"USERNAME": "sample string 4",
"FNAME": "sample string 5",
"MNAME": "sample string 6",
"LNAME": "sample string 7"
},
{
"USER_ID": 1,
"USER_ROLE_ID": 2,
"USER_ROLE": "sample string 3",
"USERNAME": "sample string 4",
"FNAME": "sample string 5",
"MNAME": "sample string 6",
"LNAME": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfTempUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Temp">
<TempUser>
<FNAME>sample string 5</FNAME>
<LNAME>sample string 7</LNAME>
<MNAME>sample string 6</MNAME>
<USERNAME>sample string 4</USERNAME>
<USER_ID>1</USER_ID>
<USER_ROLE>sample string 3</USER_ROLE>
<USER_ROLE_ID>2</USER_ROLE_ID>
</TempUser>
<TempUser>
<FNAME>sample string 5</FNAME>
<LNAME>sample string 7</LNAME>
<MNAME>sample string 6</MNAME>
<USERNAME>sample string 4</USERNAME>
<USER_ID>1</USER_ID>
<USER_ROLE>sample string 3</USER_ROLE>
<USER_ROLE_ID>2</USER_ROLE_ID>
</TempUser>
</ArrayOfTempUser>