POST api/CustomFieldApi/Update

Request Information

URI Parameters

None.

Body Parameters

CustomFieldValue
NameDescriptionTypeAdditional information
ID

integer

None.

TableName

string

None.

TableFieldId

string

None.

FieldNameId

integer

None.

Value

string

None.

Status

boolean

None.

OrgId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "TableName": "sample string 2",
  "TableFieldId": "sample string 3",
  "FieldNameId": 4,
  "Value": "sample string 5",
  "Status": true,
  "OrgId": 7
}

application/xml, text/xml

Sample:
<CustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecurityApi">
  <FieldNameId>4</FieldNameId>
  <ID>1</ID>
  <OrgId>7</OrgId>
  <Status>true</Status>
  <TableFieldId>sample string 3</TableFieldId>
  <TableName>sample string 2</TableName>
  <Value>sample string 5</Value>
</CustomFieldValue>

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 'CustomFieldValue'.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

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