GET api/ext_profile_groups?event_id={event_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| event_id | integer | Default value is 0 | 
Body Parameters
None.
Response Information
Resource Description
Collection of ext_profile_group| Name | Description | Type | Additional information | 
|---|---|---|---|
| ExtProfileGroupId | integer | None. | |
| ProfileGroupName | string | None. | |
| IsActive | boolean | None. | |
| CreatedDateTime | date | None. | |
| IsDeleted | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "ExtProfileGroupId": 1,
    "ProfileGroupName": "sample string 2",
    "IsActive": true,
    "CreatedDateTime": "2025-10-31T07:00:56.3484539+00:00",
    "IsDeleted": true
  },
  {
    "ExtProfileGroupId": 1,
    "ProfileGroupName": "sample string 2",
    "IsActive": true,
    "CreatedDateTime": "2025-10-31T07:00:56.3484539+00:00",
    "IsDeleted": true
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfext_profile_group xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <ext_profile_group>
    <CreatedDateTime>2025-10-31T07:00:56.3484539+00:00</CreatedDateTime>
    <ExtProfileGroupId>1</ExtProfileGroupId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ProfileGroupName>sample string 2</ProfileGroupName>
  </ext_profile_group>
  <ext_profile_group>
    <CreatedDateTime>2025-10-31T07:00:56.3484539+00:00</CreatedDateTime>
    <ExtProfileGroupId>1</ExtProfileGroupId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ProfileGroupName>sample string 2</ProfileGroupName>
  </ext_profile_group>
</ArrayOfext_profile_group>