GET api/layout/{id}
View the layout (Meta Field labels, GUIDS and types) for this item
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
the unique id to reference the item |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Meta Data Layout
Collection of MetaLayout| Name | Description | Type | Additional information |
|---|---|---|---|
| GUID |
unique GUID for this field |
string |
None. |
| label |
Field label (note a form may have the same label repeated so GUID is the only safe unique identifier) |
string |
None. |
| type |
Field type |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GUID": "sample string 1",
"label": "sample string 2",
"type": "sample string 3"
},
{
"GUID": "sample string 1",
"label": "sample string 2",
"type": "sample string 3"
}
]