POST api/Udf/UDFValueUpdate

Request Information

URI Parameters

None.

Body Parameters

UDFValueDetailRequest
NameDescriptionTypeAdditional information
Label

string

None.

UDFDate

date

None.

UDFDrop

string

None.

UDFFlag

boolean

None.

UDFLookup

string

None.

UDFNum

integer

None.

UDFValue

string

None.

UDFType

string

None.

KeyNum

integer

None.

KeyType

string

None.

UDFCode

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Label": "sample string 1",
  "UDFDate": "2024-05-01T11:02:56.9375915-04:00",
  "UDFDrop": "sample string 2",
  "UDFFlag": true,
  "UDFLookup": "sample string 3",
  "UDFNum": 1,
  "UDFValue": "sample string 4",
  "UDFType": "sample string 5",
  "KeyNum": 1,
  "KeyType": "sample string 6",
  "UDFCode": "sample string 7",
  "SessionNum": 8,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 9",
  "StagesURL": "sample string 10"
}

application/xml, text/xml

Sample:
<UDFValueDetailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 10</StagesURL>
  <ApplicationCode>sample string 9</ApplicationCode>
  <SessionNum>8</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <KeyNum>1</KeyNum>
  <KeyType>sample string 6</KeyType>
  <UDFCode>sample string 7</UDFCode>
  <Label>sample string 1</Label>
  <UDFDate>2024-05-01T11:02:56.9375915-04:00</UDFDate>
  <UDFDrop>sample string 2</UDFDrop>
  <UDFFlag>true</UDFFlag>
  <UDFLookup>sample string 3</UDFLookup>
  <UDFNum>1</UDFNum>
  <UDFType>sample string 5</UDFType>
  <UDFValue>sample string 4</UDFValue>
</UDFValueDetailRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UDFValueUpdateQueryResult
NameDescriptionTypeAdditional information
ExcludeColumnList

Collection of string

None.

ResultSet

Collection of UDFValueUpdateResult

None.

Success

boolean

None.

UserErrorMessage

string

None.

ErrorTypeNum

integer

None.

SqlConnectionLost

boolean

None.

ClientVersion

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ExcludeColumnList": [
    "sample string 1",
    "sample string 2"
  ],
  "ResultSet": [
    {
      "KeyNum": 1,
      "KeyType": "sample string 1",
      "Label": "sample string 2",
      "UDFCode": "sample string 3",
      "UDFDate": "2024-05-01T11:02:56.9375915-04:00",
      "UDFDescription": "sample string 4",
      "UDFDrop": "sample string 5",
      "UDFFlag": true,
      "UDFLookup": "sample string 6",
      "UDFNum": 1,
      "UDFValue": "sample string 7"
    },
    {
      "KeyNum": 1,
      "KeyType": "sample string 1",
      "Label": "sample string 2",
      "UDFCode": "sample string 3",
      "UDFDate": "2024-05-01T11:02:56.9375915-04:00",
      "UDFDescription": "sample string 4",
      "UDFDrop": "sample string 5",
      "UDFFlag": true,
      "UDFLookup": "sample string 6",
      "UDFNum": 1,
      "UDFValue": "sample string 7"
    }
  ],
  "Success": true,
  "UserErrorMessage": "sample string 2",
  "ErrorTypeNum": 3,
  "SqlConnectionLost": true,
  "ClientVersion": "sample string 5"
}

application/xml, text/xml

Sample:
<UDFValueUpdateQueryResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stages">
  <ClientVersion>sample string 5</ClientVersion>
  <ErrorTypeNum>3</ErrorTypeNum>
  <SqlConnectionLost>true</SqlConnectionLost>
  <Success>true</Success>
  <UserErrorMessage>sample string 2</UserErrorMessage>
  <ExcludeColumnList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ExcludeColumnList>
  <ResultSet>
    <UDFValueUpdateResult>
      <KeyNum>1</KeyNum>
      <KeyType>sample string 1</KeyType>
      <Label>sample string 2</Label>
      <UDFCode>sample string 3</UDFCode>
      <UDFDate>2024-05-01T11:02:56.9375915-04:00</UDFDate>
      <UDFDescription>sample string 4</UDFDescription>
      <UDFDrop>sample string 5</UDFDrop>
      <UDFFlag>true</UDFFlag>
      <UDFLookup>sample string 6</UDFLookup>
      <UDFNum>1</UDFNum>
      <UDFValue>sample string 7</UDFValue>
    </UDFValueUpdateResult>
    <UDFValueUpdateResult>
      <KeyNum>1</KeyNum>
      <KeyType>sample string 1</KeyType>
      <Label>sample string 2</Label>
      <UDFCode>sample string 3</UDFCode>
      <UDFDate>2024-05-01T11:02:56.9375915-04:00</UDFDate>
      <UDFDescription>sample string 4</UDFDescription>
      <UDFDrop>sample string 5</UDFDrop>
      <UDFFlag>true</UDFFlag>
      <UDFLookup>sample string 6</UDFLookup>
      <UDFNum>1</UDFNum>
      <UDFValue>sample string 7</UDFValue>
    </UDFValueUpdateResult>
  </ResultSet>
</UDFValueUpdateQueryResult>