GET api/v1/DynamicFields/{id}?owner={owner}
Retrieve array of dynamic fields by owner.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| owner | TableOwner | Required | |
| id | Must be set to dynamic table id, if owner is DynamicTable! | integer | None. | 
Body Parameters
None.
Response Information
Resource Description
Collection of ReadDynamicFieldDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| Name | Name of dynamic field | string | Max length: 100 | 
| Type | Type of dynamic field | DynamicFieldType | None. | 
| Label | Label of dynamic field (preferred name for displaying). | string | None. | 
| Values | List of allowed dynamic field values. Null means no restrictions. Dynamic field value can always be null. | Collection of Object | None. | 
Response Formats
application/json, text/json
            Sample:
[
  {
    "Name": "sample string 1",
    "Type": "String",
    "Label": "sample string 2",
    "Values": [
      {},
      {}
    ]
  },
  {
    "Name": "sample string 1",
    "Type": "String",
    "Label": "sample string 2",
    "Values": [
      {},
      {}
    ]
  }
]