GET api/EntityTypes

Request Information

URI Parameters

None.

Body Parameters

Object

None.

Request Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of EntityType
NameDescriptionTypeAdditional information
ID

integer

None.

ENTITY_TYPE

string

None.

IS_ACTIVE_FLG

byte

None.

CREATED_ON

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "ENTITY_TYPE": "sample string 2",
    "IS_ACTIVE_FLG": 64,
    "CREATED_ON": "2026-01-09T13:55:00.5318217+00:00"
  },
  {
    "ID": 1,
    "ENTITY_TYPE": "sample string 2",
    "IS_ACTIVE_FLG": 64,
    "CREATED_ON": "2026-01-09T13:55:00.5318217+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntityType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Entity">
  <EntityType>
    <CREATED_ON>2026-01-09T13:55:00.5318217+00:00</CREATED_ON>
    <ENTITY_TYPE>sample string 2</ENTITY_TYPE>
    <ID>1</ID>
    <IS_ACTIVE_FLG>64</IS_ACTIVE_FLG>
  </EntityType>
  <EntityType>
    <CREATED_ON>2026-01-09T13:55:00.5318217+00:00</CREATED_ON>
    <ENTITY_TYPE>sample string 2</ENTITY_TYPE>
    <ID>1</ID>
    <IS_ACTIVE_FLG>64</IS_ACTIVE_FLG>
  </EntityType>
</ArrayOfEntityType>