GET v1/forms/element-types

Use this method to obtain the list of form element types, (also known as input types) available for dynamic form items.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a collection of Form Item Type objects.

Collection of FormElementType
NameDescriptionTypeAdditional information
id

Form Item type unique identifier.

string

None.

type

Input type is the humanly readable element type, used by developers to code against. Rules governing the behavior of each form item depend on this property.

string

None.

name

Form Item Type friendly display name. (Only used by back-end interfaces like MaaS or SMPK-Admin portals)

string

None.

description

Form Item Type friendly description. (Only used by back-end interfaces like MaaS or SMPK-Admin portals)

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "type": "sample string 2",
    "name": "sample string 3",
    "description": "sample string 4"
  },
  {
    "id": "sample string 1",
    "type": "sample string 2",
    "name": "sample string 3",
    "description": "sample string 4"
  }
]