Update a Commerce Process Data Column

patch

/rest/v19/commerceProcessSetups/{processVarName}/dataColumns/{id}

Use this endpoint to update the specified Commerce Process Data Column.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CmAdminDataColumnRequestModel
Type: object
Show Source
Back to Top

Response

204 Response

Success
Back to Top

Examples

The following example shows how to update the specified Commerce Process Data Column by submitting a PATCH request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X PATCH -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/commerceProcessSetups/oraclecpqo/dataColumns/18356111

Request Body Sample

{
  "attributeType": "COMMERCE",
  "documentId": 3023304905,
  "isIndexed": false,
  "isKeywordSearch": false,
  "cmAttrId": 3023312918,
  "catAttrId": -1,
  "searchLabel": "abc",
  "reportLabel": "abc",
  "variableName": "abcdhjiIIii_c",
  "catSegmentId": 50,
  "catPlineId": 3023271275,
  "catModelId": 3023271276
}
Back to Top