GET api/User?username={username}&password={password}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
UserModelName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Guid | globally unique identifier |
None. |
|
string |
None. |
||
FirstName | string |
None. |
|
LastName | string |
None. |
|
FullName | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Guid": "3175e5f6-7c00-4d47-8a46-aac764e37e77", "Email": "sample string 3", "FirstName": "sample string 4", "LastName": "sample string 5", "FullName": "sample string 4 sample string 5" }
application/xml, text/xml
Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Soprema.Inspector.WebApi.Models"> <FirstName>sample string 4</FirstName> <LastName>sample string 5</LastName> <Email>sample string 3</Email> <Guid>3175e5f6-7c00-4d47-8a46-aac764e37e77</Guid> <Id>1</Id> </UserModel>