GET Api/Utility/GetFieldTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FieldTypeDto
NameDescriptionTypeAdditional information
FieldTypeId

integer

Required

WizardDataObjectId

integer

Required

UserControlId

integer

None.

Name

string

Required

PropertyName

string

Required

Response Formats

application/json, text/json

Sample:
{
  "fieldTypeId": 1,
  "wizardDataObjectId": 2,
  "userControlId": 1,
  "name": "sample string 3",
  "propertyName": "sample string 4"
}

multipart/form-data

Sample:
{"fieldTypeId":1,"wizardDataObjectId":2,"userControlId":1,"name":"sample string 3","propertyName":"sample string 4"}

application/xml, text/xml

Sample:
<FieldTypeDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <FieldTypeId>1</FieldTypeId>
  <WizardDataObjectId>2</WizardDataObjectId>
  <UserControlId>1</UserControlId>
  <Name>sample string 3</Name>
  <PropertyName>sample string 4</PropertyName>
</FieldTypeDto>