Deploy a Product Family
post
/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/actions/deploy
Use this endpoint to delpoy the specified Product Family.
Request
Supported Media Types
- application/json
Path Parameters
-
allProdFamsVarName(required): string
Variable Name
-
prodFamVarName(required): string
Variable Name
Root Schema : Product Family Setup Deploy Request Setups
Type:
objectTitle:
Show Source
Product Family Setup Deploy Request Setups-
dataTables:
array Selected Data Table Variable Names
Title:
Selected Data Table Variable NamesList of selected product family related data table variable names -
emailTo:
string
Title:
Email ToOptional email address to send a confirmation email. -
scheduledTime:
string
Title:
Scheduled TimeOptional time to start the deploy.
Nested Schema : Selected Data Table Variable Names
Type:
arrayTitle:
Selected Data Table Variable NamesList of selected product family related data table variable names
Show Source
Response
Supported Media Types
- application/json
Default Response
Root Schema : Product Family Setup Deploy Response Setups
Type:
objectTitle:
Show Source
Product Family Setup Deploy Response Setups-
links:
array links
Title:
linkslinks
Examples
The following example shows how to deploy a Product Family by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl - X POST -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/testbed/actions/deploy
Request Body Sample
{
"emailTo": "some@email.address",
"scheduledTime": "2024-06-24T18:51:02.000Z",
"dataTables": ["dataTable", "otherDataTable", "thirdDataTable"]
}
Response Body Sample
{
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/allProductFamilySetups/_allProductFamilies/productFamilies/testbed/actions/deploy"
}, {
"rel": "related",
"href": "https://sitename.oracle.com/asyncTasks/3022899700/status"
}
]
}