GET api/EntityLayouts/{id}

Fetch a specific layout

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

EntityLayout
NameDescriptionTypeAdditional information
Fields

Collection of EntityField

None.

Name

string

None.

LastModified

date

None.

Created

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Fields": [
    {
      "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:25.7055098+00:00",
      "Created": "2025-12-08T14:20:25.7055098+00:00",
      "Id": 7
    },
    {
      "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:25.7055098+00:00",
      "Created": "2025-12-08T14:20:25.7055098+00:00",
      "Id": 7
    }
  ],
  "Name": "sample string 1",
  "LastModified": "2025-12-08T14:20:25.7055098+00:00",
  "Created": "2025-12-08T14:20:25.7055098+00:00",
  "Id": 4
}

application/xml, text/xml

Sample:
<EntityLayout xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Id>4</Id>
  <Created>2025-12-08T14:20:25.7055098+00:00</Created>
  <LastModified>2025-12-08T14:20:25.7055098+00:00</LastModified>
  <Name>sample string 1</Name>
  <Fields>
    <EntityField>
      <Id>7</Id>
      <Created>2025-12-08T14:20:25.7055098+00:00</Created>
      <LastModified>2025-12-08T14:20:25.7055098+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>
    <EntityField>
      <Id>7</Id>
      <Created>2025-12-08T14:20:25.7055098+00:00</Created>
      <LastModified>2025-12-08T14:20:25.7055098+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>
  </Fields>
</EntityLayout>