POST api/wf-designer/datafieldsection/update

Request Information

URI Parameters

None.

Body Parameters

DTOSYSWFDataFieldSection
NameDescriptionTypeAdditional information
WFDataFieldSectionID

integer

None.

WFDataID

integer

None.

Name

string

None.

Display

string

None.

Description

string

None.

ShowDescription

boolean

None.

FlagDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "WFDataFieldSectionID": 1,
  "WFDataID": 2,
  "Name": "sample string 3",
  "Display": "sample string 4",
  "Description": "sample string 5",
  "ShowDescription": true,
  "FlagDeleted": true
}

application/xml, text/xml

Sample:
<DTOSYSWFDataFieldSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PTI.AF.DTO">
  <Description>sample string 5</Description>
  <Display>sample string 4</Display>
  <FlagDeleted>true</FlagDeleted>
  <Name>sample string 3</Name>
  <ShowDescription>true</ShowDescription>
  <WFDataFieldSectionID>1</WFDataFieldSectionID>
  <WFDataID>2</WFDataID>
</DTOSYSWFDataFieldSection>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DTOSYSWFDataFieldSection'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>