GET api/MemberLogins/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MemberLoginDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| FullName | string |
None. |
|
| string |
None. |
||
| MemberId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"FullName": "sample string 2",
"Email": "sample string 3",
"MemberId": "27ff16c9-7f29-4414-8c63-f45e9048f470"
}
application/xml, text/xml
Sample:
<MemberLoginDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <Email>sample string 3</Email> <FullName>sample string 2</FullName> <MemberId>27ff16c9-7f29-4414-8c63-f45e9048f470</MemberId> <UserName>sample string 1</UserName> </MemberLoginDto>
