GET api/users/profiles
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ProfileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileID | integer |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProfileID": 1,
"Name": "sample string 2"
},
{
"ProfileID": 1,
"Name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfProfileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalWanza.Services.Core.Models">
<ProfileDto>
<Name>sample string 2</Name>
<ProfileID>1</ProfileID>
</ProfileDto>
<ProfileDto>
<Name>sample string 2</Name>
<ProfileID>1</ProfileID>
</ProfileDto>
</ArrayOfProfileDto>