Get a Product Family Setup
get
/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}
Use this endpoint to retrieve the specified Product Family setup.
Request
Supported Media Types
- application/json
Path Parameters
-
allProdFamsVarName(required): string
Variable Name
-
prodFamVarName(required): string
Variable Name
Query Parameters
-
expand: string
Allows expansion of relationships.
Response
Supported Media Types
- application/json
Default Response
Root Schema : Product Family
Type:
objectTitle:
Show Source
Product Family-
activeLayoutType:
string
Title:
Active Layout TypeCurrent Active Layout Type -
companyId:
integer
Title:
Company IdCompany Id -
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. -
id:
integer
Title:
IdIdentifier for the resource -
label:
string
Title:
LabelProduct Family Label -
lastDeployedDate:
string
Title:
Last Deployed DateThe date of the last successful product family deployment. -
name:
string
Title:
NameProduct Family Name -
segmentId:
integer
Title:
Segment IdSegment Id -
variableName:
string
Title:
Variable NameVariable Name
Examples
The following example shows how to retrieve a catalog definition for the specified Product Family by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC
Response Body Sample
{
"companyId": 4118171,
"variableName": "unityINC",
"segmentId": 13,
"name": "Unity INC",
"dateModified": "2021-02-03T17:40:33Z",
"id": 36732579,
"dateAdded": "2018-11-09T17:24:51Z",
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC"
}, {
"kind": "",
"rel": "child",
"name": "attributes",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/attributes"
}, {
"kind": "",
"rel": "child",
"name": "productLines",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines"
}, {
"rel": "parent",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies"
}
]
}