Deploy a Product Family

post

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/actions/deploy

Use this endpoint to deploy a Product Family.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Product Family Setup Deploy Request Definitions
Type: object
Title: Product Family Setup Deploy Request Definitions
Show Source
Nested Schema : Selected Data Table Variable Names
Type: array
Title: Selected Data Table Variable Names
List of selected product family related data table variable names
Show Source
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Product Family Setup Deploy Response Definitions
Type: object
Title: Product Family Setup Deploy Response Definitions
Show Source
Back to Top

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"
    }
  ]
}
Back to Top