GET Api/Utility/GetProfiles

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ProfileSelectDto
NameDescriptionTypeAdditional information
ProfileId

string

None.

Name

string

None.

Email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "profileId": "sample string 1",
  "name": "sample string 2",
  "email": "sample string 3"
}

multipart/form-data

Sample:
{"profileId":"sample string 1","name":"sample string 2","email":"sample string 3"}

application/xml, text/xml

Sample:
<ProfileSelectDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ProfileId>sample string 1</ProfileId>
  <Name>sample string 2</Name>
  <Email>sample string 3</Email>
</ProfileSelectDto>