GET api/Fields?fieldtype={fieldtype}&fieldsubtype={fieldsubtype}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fieldtype

string

Required

fieldsubtype

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Field
NameDescriptionTypeAdditional information
ID

string

None.

Title

string

None.

Value

string

None.

FieldType

string

None.

FieldSubType

string

None.

ValueType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "sample string 1",
    "Title": "sample string 2",
    "Value": "sample string 3",
    "FieldType": "sample string 4",
    "FieldSubType": "sample string 5",
    "ValueType": "sample string 6"
  },
  {
    "ID": "sample string 1",
    "Title": "sample string 2",
    "Value": "sample string 3",
    "FieldType": "sample string 4",
    "FieldSubType": "sample string 5",
    "ValueType": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrefTrackingWebAPI.Models">
  <Field>
    <FieldSubType>sample string 5</FieldSubType>
    <FieldType>sample string 4</FieldType>
    <ID>sample string 1</ID>
    <Title>sample string 2</Title>
    <Value>sample string 3</Value>
    <ValueType>sample string 6</ValueType>
  </Field>
  <Field>
    <FieldSubType>sample string 5</FieldSubType>
    <FieldType>sample string 4</FieldType>
    <ID>sample string 1</ID>
    <Title>sample string 2</Title>
    <Value>sample string 3</Value>
    <ValueType>sample string 6</ValueType>
  </Field>
</ArrayOfField>