Get Undeployed Data Tables

post

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

Use this endpoint to retrieve a list of undeployed Data Tables related to the specified Product Family.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Product Family Setup Get Related Undeployed Data Tables Request Setups
Type: object
Title: Product Family Setup Get Related Undeployed Data Tables Request Setups
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Product Family Setup Get Related Undeployed Data Tables Response Setups
Type: object
Title: Product Family Setup Get Related Undeployed Data Tables Response Setups
Show Source
Nested Schema : Undeployed Data Table Variable Names
Type: array
Title: Undeployed Data Table Variable Names
List of undeployed data tables that are referenced within the product family's table based configuration rules.
Show Source
Back to Top

Examples

The following example shows how to retrieve a list of undeployed data tables that are referenced within the Product Family's table based Configuration rules 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/getRelatedUndeployedDataTables

Response Body Sample

{
    "undeployedDataTables": ["dataTable", "otherDataTable", "thirdDataTable"]
}
Back to Top