GET api/users
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of user| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
None. |
|
| string |
None. |
||
| username | string |
None. |
|
| uploads | integer |
None. |
|
| votes | integer |
None. |
|
| voted | integer |
None. |
|
| votingPower | integer |
None. |
|
| tStamp | date |
None. |
|
| photo | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "sample string 1",
"email": "sample string 2",
"username": "sample string 3",
"uploads": 4,
"votes": 5,
"voted": 6,
"votingPower": 7,
"tStamp": "2025-12-18T07:25:00.8025929+02:00",
"photo": "QEA="
},
{
"id": "sample string 1",
"email": "sample string 2",
"username": "sample string 3",
"uploads": 4,
"votes": 5,
"voted": 6,
"votingPower": 7,
"tStamp": "2025-12-18T07:25:00.8025929+02:00",
"photo": "QEA="
}
]
application/xml, text/xml
Sample:
<ArrayOfuser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
<user>
<email>sample string 2</email>
<id>sample string 1</id>
<photo>QEA=</photo>
<tStamp>2025-12-18T07:25:00.8025929+02:00</tStamp>
<uploads>4</uploads>
<username>sample string 3</username>
<voted>6</voted>
<votes>5</votes>
<votingPower>7</votingPower>
</user>
<user>
<email>sample string 2</email>
<id>sample string 1</id>
<photo>QEA=</photo>
<tStamp>2025-12-18T07:25:00.8025929+02:00</tStamp>
<uploads>4</uploads>
<username>sample string 3</username>
<voted>6</voted>
<votes>5</votes>
<votingPower>7</votingPower>
</user>
</ArrayOfuser>