GET api/UserProfiles
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of UserProfile| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Username | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| Country | string |
None. |
|
| FirstInserted | date |
None. |
|
| LastUpated | date |
None. |
|
| Studying | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Username": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"City": "sample string 5",
"State": "sample string 6",
"Country": "sample string 7",
"FirstInserted": "2026-01-15T08:45:48.1086389-08:00",
"LastUpated": "2026-01-15T08:45:48.1086389-08:00",
"Studying": "sample string 10"
},
{
"Id": 1,
"Username": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"City": "sample string 5",
"State": "sample string 6",
"Country": "sample string 7",
"FirstInserted": "2026-01-15T08:45:48.1086389-08:00",
"LastUpated": "2026-01-15T08:45:48.1086389-08:00",
"Studying": "sample string 10"
}
]
application/xml, text/xml
Sample:
<ArrayOfUserProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WordBankAPI">
<UserProfile>
<City>sample string 5</City>
<Country>sample string 7</Country>
<FirstInserted>2026-01-15T08:45:48.1086389-08:00</FirstInserted>
<FirstName>sample string 3</FirstName>
<Id>1</Id>
<LastName>sample string 4</LastName>
<LastUpated>2026-01-15T08:45:48.1086389-08:00</LastUpated>
<State>sample string 6</State>
<Studying>sample string 10</Studying>
<Username>sample string 2</Username>
</UserProfile>
<UserProfile>
<City>sample string 5</City>
<Country>sample string 7</Country>
<FirstInserted>2026-01-15T08:45:48.1086389-08:00</FirstInserted>
<FirstName>sample string 3</FirstName>
<Id>1</Id>
<LastName>sample string 4</LastName>
<LastUpated>2026-01-15T08:45:48.1086389-08:00</LastUpated>
<State>sample string 6</State>
<Studying>sample string 10</Studying>
<Username>sample string 2</Username>
</UserProfile>
</ArrayOfUserProfile>