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
- application/json
Path Parameters
-
actionVarName(required): string
Variable Name of the Config Action
-
allProdFamsVarName(required): string
Variable Name
-
prodFamVarName(required): string
Variable Name
Root Schema : Configuration Actions
Type:
objectTitle:
Show Source
Configuration Actions-
dateAdded:
string
Title:
Date AddedSystem field indicating the date on which the Resource was created. -
dateModified:
string
Title:
Date ModifiedSystem field indicating the date on which the Resource was last modified. -
description:
string
Title:
DescriptionDescription of the Config Action -
label:
string
Title:
Action NameName of the Config Action -
refType:
object Reference Type
Title:
Reference TypeType of the Reference -
status:
object Config Action Status
Title:
Config Action StatusStatus of Config Action -
variableName:
string
Title:
Variable NameVariable Name of the Config Action
Nested Schema : Reference Type
Type:
objectTitle:
Reference TypeType of the Reference
Show Source
-
displayValue:
string
Title:
Display ValueTranslated display name of the type for which fixed list of values can be defined. -
id:
integer
Title:
IdPrimary Key of the fixed list of value resource. -
lookupCode:
string
Title:
Lookup CodeLanguage independent code of the fixed list of value.
Nested Schema : Config Action Status
Type:
objectTitle:
Config Action StatusStatus of Config Action
Show Source
-
displayValue:
string
Title:
Display ValueTranslated display name of the type for which fixed list of values can be defined. -
id:
integer
Title:
IdPrimary Key of the fixed list of value resource. -
lookupCode:
string
Title:
Lookup CodeLanguage independent code of the fixed list of value.
Response
Supported Media Types
- application/json
Default Response
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