Update a Product Family Action

put

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/_actions/{actionVarName}

Use this endpoint to update the specified Product Family action.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Configuration Actions
Type: object
Title: Configuration Actions
Show Source
Nested Schema : Reference Type
Type: object
Title: Reference Type
Type of the Reference
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Nested Schema : Config Action Status
Type: object
Title: Config Action Status
Status of Config Action
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Back to Top

Response

Supported Media Types

Default Response

Back to Top

Examples

The following example shows how to update a Product Family action by submitting a PUT request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X PUT -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/visionVehicles/_actions/selectAllpf

Request Body Sample

{
  "label": "Select All Options",
  "description": "Select all options for the Product Line",
  "variableName": "selectAllpf",
  "status": {
    "lookupCode": "1"
  }
}

Response Status: 204

Back to Top