GET api/admin/ext_profile_group/details/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

admin_ext_pg_details_with_sub_profile
NameDescriptionTypeAdditional information
basic

admin_ext_profile_group_details

None.

profiles

Collection of admin_ext_sub_profile

None.

Response Formats

application/json, text/json

Sample:
{
  "basic": {
    "Password": "sample string 1",
    "ExtProfileGroupId": 2,
    "ProfileGroupName": "sample string 3",
    "Username": "sample string 4",
    "IsActive": true,
    "CreatedDateTime": "2025-07-18T16:20:17.2493756+00:00",
    "LastUpdatedDateTime": "2025-07-18T16:20:17.2493756+00:00",
    "IsDeleted": true,
    "EventIds": "sample string 6"
  },
  "profiles": [
    {
      "ExtSubProfileId": 1,
      "ExtProfileGroupId": 2,
      "SubProfileName": "sample string 3",
      "AccreditationCode": "sample string 4",
      "IsActive": true,
      "CreatedDateTime": "2025-07-18T16:20:17.2493756+00:00",
      "IsDeleted": true,
      "SortOrder": 6,
      "EventIds": "sample string 7"
    },
    {
      "ExtSubProfileId": 1,
      "ExtProfileGroupId": 2,
      "SubProfileName": "sample string 3",
      "AccreditationCode": "sample string 4",
      "IsActive": true,
      "CreatedDateTime": "2025-07-18T16:20:17.2493756+00:00",
      "IsDeleted": true,
      "SortOrder": 6,
      "EventIds": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<admin_ext_pg_details_with_sub_profile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <basic>
    <CreatedDateTime>2025-07-18T16:20:17.2493756+00:00</CreatedDateTime>
    <EventIds>sample string 6</EventIds>
    <ExtProfileGroupId>2</ExtProfileGroupId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastUpdatedDateTime>2025-07-18T16:20:17.2493756+00:00</LastUpdatedDateTime>
    <ProfileGroupName>sample string 3</ProfileGroupName>
    <Username>sample string 4</Username>
    <Password>sample string 1</Password>
  </basic>
  <profiles>
    <admin_ext_sub_profile>
      <AccreditationCode>sample string 4</AccreditationCode>
      <CreatedDateTime>2025-07-18T16:20:17.2493756+00:00</CreatedDateTime>
      <EventIds>sample string 7</EventIds>
      <ExtProfileGroupId>2</ExtProfileGroupId>
      <ExtSubProfileId>1</ExtSubProfileId>
      <IsActive>true</IsActive>
      <IsDeleted>true</IsDeleted>
      <SortOrder>6</SortOrder>
      <SubProfileName>sample string 3</SubProfileName>
    </admin_ext_sub_profile>
    <admin_ext_sub_profile>
      <AccreditationCode>sample string 4</AccreditationCode>
      <CreatedDateTime>2025-07-18T16:20:17.2493756+00:00</CreatedDateTime>
      <EventIds>sample string 7</EventIds>
      <ExtProfileGroupId>2</ExtProfileGroupId>
      <ExtSubProfileId>1</ExtSubProfileId>
      <IsActive>true</IsActive>
      <IsDeleted>true</IsDeleted>
      <SortOrder>6</SortOrder>
      <SubProfileName>sample string 3</SubProfileName>
    </admin_ext_sub_profile>
  </profiles>
</admin_ext_pg_details_with_sub_profile>