GET api/OrganizationTypes/Id/{TypeId}
List all OrgnanizationTypes
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| TypeId | Required Profile row Id (Mandatory) | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of OrganizationType| Name | Description | Type | Additional information | 
|---|---|---|---|
| OrganizationTypeId | integer | None. | |
| OrganizationType1 | string | None. | |
| IsActive | boolean | None. | |
| CreatedDateTime | date | None. | |
| LastUpdatedDateTime | date | None. | |
| CreatedBy | integer | None. | |
| LastModifiedBy | integer | None. | |
| IsDeleted | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "OrganizationTypeId": 1,
    "OrganizationType1": "sample string 2",
    "IsActive": true,
    "CreatedDateTime": "2025-10-31T09:44:10.5041724+00:00",
    "LastUpdatedDateTime": "2025-10-31T09:44:10.5041724+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "IsDeleted": true
  },
  {
    "OrganizationTypeId": 1,
    "OrganizationType1": "sample string 2",
    "IsActive": true,
    "CreatedDateTime": "2025-10-31T09:44:10.5041724+00:00",
    "LastUpdatedDateTime": "2025-10-31T09:44:10.5041724+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "IsDeleted": true
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfOrganizationType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <OrganizationType>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-10-31T09:44:10.5041724+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-10-31T09:44:10.5041724+00:00</LastUpdatedDateTime>
    <OrganizationType1>sample string 2</OrganizationType1>
    <OrganizationTypeId>1</OrganizationTypeId>
  </OrganizationType>
  <OrganizationType>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-10-31T09:44:10.5041724+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-10-31T09:44:10.5041724+00:00</LastUpdatedDateTime>
    <OrganizationType1>sample string 2</OrganizationType1>
    <OrganizationTypeId>1</OrganizationTypeId>
  </OrganizationType>
</ArrayOfOrganizationType>