

GET api/Core/GetMembersByUsername?filter={filter}&OnlyStartingWith={OnlyStartingWith}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| filter | string |
Required |
|
| OnlyStartingWith | boolean |
Default value is True |
Body Parameters
None.
Response Information
Resource Description
Collection of MemberInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| username | string |
None. |
|
| noun | string |
None. |
|
| desc | string |
None. |
|
| image | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"username": "sample string 2",
"noun": "sample string 3",
"desc": "sample string 4",
"image": "sample string 5"
},
{
"id": 1,
"username": "sample string 2",
"noun": "sample string 3",
"desc": "sample string 4",
"image": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfCoreController.MemberInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TBT.Api">
<CoreController.MemberInfo>
<desc>sample string 4</desc>
<id>1</id>
<image>sample string 5</image>
<noun>sample string 3</noun>
<username>sample string 2</username>
</CoreController.MemberInfo>
<CoreController.MemberInfo>
<desc>sample string 4</desc>
<id>1</id>
<image>sample string 5</image>
<noun>sample string 3</noun>
<username>sample string 2</username>
</CoreController.MemberInfo>
</ArrayOfCoreController.MemberInfo>