POST api/Udf/GetUdfsData

Request Information

URI Parameters

None.

Body Parameters

UdfSource
NameDescriptionTypeAdditional information
Key

string

None.

Value

string

None.

TableId

string

None.

UdfsTarget

Collection of UdfTarget

None.

Request Formats

application/json, text/json

Sample:
{
  "Key": "sample string 1",
  "Value": "sample string 2",
  "TableId": "sample string 3",
  "UdfsTarget": [
    {
      "Name": "sample string 1",
      "FieldType": "sample string 2",
      "Value": "sample string 3"
    },
    {
      "Name": "sample string 1",
      "FieldType": "sample string 2",
      "Value": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<UdfSource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CLVSSUPER.MODELS">
  <Key>sample string 1</Key>
  <TableId>sample string 3</TableId>
  <UdfsTarget>
    <UdfTarget>
      <FieldType>sample string 2</FieldType>
      <Name>sample string 1</Name>
      <Value>sample string 3</Value>
    </UdfTarget>
    <UdfTarget>
      <FieldType>sample string 2</FieldType>
      <Name>sample string 1</Name>
      <Value>sample string 3</Value>
    </UdfTarget>
  </UdfsTarget>
  <Value>sample string 2</Value>
</UdfSource>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

None.