Get an All Product Families Setup
get
/rest/v19/allProductFamilySetups/{allProdFamsVarName}
Use this endpoint to retrieve the specified All Product Families setup.
Request
Supported Media Types
- application/json
Path Parameters
-
allProdFamsVarName(required): string
Variable Name
Query Parameters
-
expand: string
Allows expansion of relationships.
Response
Supported Media Types
- application/json
Default Response
Root Schema : Product
Type:
objectTitle:
Show Source
Product-
companyId:
integer
Title:
Company IdCompany Id -
label:
string
Title:
LabelLabel -
variableName:
string
Title:
Variable NameVariable Name
Examples
The following example shows how to retrieve a catalog definition for the specified All Product Families item 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
Response Body Sample
{
"companyId": 4118171,
"variableName": "_allProductFamilies",
"label": "All Product Families",
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies"
}, {
"kind": "",
"rel": "child",
"name": "attributes",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes"
}, {
"kind": "",
"rel": "child",
"name": "productFamilies",
"href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies"
}
]
}