GET api/Individuals/{id}/Profiles

Get Details Of an Individuals Profiles

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of IndividualsProfileInformation_clean_data
NameDescriptionTypeAdditional information
ProfileId

integer

None.

ittfid

integer

None.

OrganizationId

integer

None.

ProfileTypeId

integer

None.

ProfileType

string

None.

OrganizationName

string

None.

IsActive

boolean

None.

HideOnProfileDetails

boolean

None.

IsDeleted

boolean

None.

QRTag

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProfileId": 1,
    "ittfid": 1,
    "OrganizationId": 2,
    "ProfileTypeId": 3,
    "ProfileType": "sample string 4",
    "OrganizationName": "sample string 5",
    "IsActive": true,
    "HideOnProfileDetails": true,
    "IsDeleted": true,
    "QRTag": "sample string 7"
  },
  {
    "ProfileId": 1,
    "ittfid": 1,
    "OrganizationId": 2,
    "ProfileTypeId": 3,
    "ProfileType": "sample string 4",
    "OrganizationName": "sample string 5",
    "IsActive": true,
    "HideOnProfileDetails": true,
    "IsDeleted": true,
    "QRTag": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIndividualsProfileInformation_clean_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers.Utils">
  <IndividualsProfileInformation_clean_data>
    <HideOnProfileDetails>true</HideOnProfileDetails>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <OrganizationId>2</OrganizationId>
    <OrganizationName>sample string 5</OrganizationName>
    <ProfileId>1</ProfileId>
    <ProfileType>sample string 4</ProfileType>
    <ProfileTypeId>3</ProfileTypeId>
    <QRTag>sample string 7</QRTag>
    <ittfid>1</ittfid>
  </IndividualsProfileInformation_clean_data>
  <IndividualsProfileInformation_clean_data>
    <HideOnProfileDetails>true</HideOnProfileDetails>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <OrganizationId>2</OrganizationId>
    <OrganizationName>sample string 5</OrganizationName>
    <ProfileId>1</ProfileId>
    <ProfileType>sample string 4</ProfileType>
    <ProfileTypeId>3</ProfileTypeId>
    <QRTag>sample string 7</QRTag>
    <ittfid>1</ittfid>
  </IndividualsProfileInformation_clean_data>
</ArrayOfIndividualsProfileInformation_clean_data>