GET api/EntityFields/{id}

Fetch a specific field

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

EntityField
NameDescriptionTypeAdditional information
Type

string

None.

EnableFiltering

boolean

None.

ListValues

Collection of EntityFieldListValue

None.

Mandatory

boolean

None.

Name

string

None.

LastModified

date

None.

Created

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Type": "sample string 1",
  "EnableFiltering": true,
  "ListValues": [
    {
      "Id": 1,
      "Position": 2,
      "Text": "sample string 3",
      "FieldId": 4
    },
    {
      "Id": 1,
      "Position": 2,
      "Text": "sample string 3",
      "FieldId": 4
    }
  ],
  "Mandatory": true,
  "Name": "sample string 4",
  "LastModified": "2025-12-08T14:20:52.6373431+00:00",
  "Created": "2025-12-08T14:20:52.6373431+00:00",
  "Id": 7
}

application/xml, text/xml

Sample:
<EntityField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Id>7</Id>
  <Created>2025-12-08T14:20:52.6373431+00:00</Created>
  <LastModified>2025-12-08T14:20:52.6373431+00:00</LastModified>
  <Name>sample string 4</Name>
  <EnableFiltering>true</EnableFiltering>
  <ListValues>
    <EntityFieldListValue>
      <FieldId>4</FieldId>
      <Id>1</Id>
      <Position>2</Position>
      <Text>sample string 3</Text>
    </EntityFieldListValue>
    <EntityFieldListValue>
      <FieldId>4</FieldId>
      <Id>1</Id>
      <Position>2</Position>
      <Text>sample string 3</Text>
    </EntityFieldListValue>
  </ListValues>
  <Mandatory>true</Mandatory>
  <Type>sample string 1</Type>
</EntityField>