Get a Product Line Menu Item Image Definition
get
/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/attributes/{attributeVarName}/menuItems/{menuItem_Id}/images/{image_Id}
Use this endpoint to retrieve a definition for the specified Product Line attribute menu item image.
Request
Supported Media Types
- application/json
Path Parameters
-
allProdFamsVarName(required): string
Variable Name of All Product Families '_allProductFamilies'
-
attributeVarName(required): string
Variable Name of the Attribute
-
image_Id(required): integer
Primary Key of the Resource
-
menuItem_Id(required): integer
Primary Key of the Resource
-
prodFamVarName(required): string
Variable Name of the Product Family.
-
prodLineVarName(required): string
Variable Name of the Product Line
Response
Supported Media Types
- application/json
Default Response
Root Schema : Configuration Menu Item Images
Type:
object
Title:
Show Source
Configuration Menu Item Images
-
dateAdded:
string
Title:
Date Added
System field indicating the date on which the Resource was created. -
dateModified:
string
Title:
Date Modified
System field indicating the date on which the Resource was last modified. -
id:
integer
Title:
Id
Primary Key of the Resource -
relativePath:
string
Title:
Relative Path
Relative Path for Configuration Menu Item Image
Examples
The following example shows how to retrieve the specified Product Line menu item image definition 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 "Content-type: application/json" https://sitename.oracle.com/rest/v17/allProductFamilySetups/_allProductFamilies/productFamilies/testbed/productLines/samplePL/attributes/aVPSSMImageMenuIncluded/menuItems/16317649/images/16317669
Response Body Sample
{ "relativePath": "$BASE_PATH$/Configuration/tropical.jpg", "dateModified": "2019-05-02T20:17:39.000Z", "id": 16317669, "dateAdded": "2014-02-28T19:31:39.000Z", "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v17/allProductFamilySetups/_allProductFamilies/productFamilies/testbed/productLines/samplePL/attributes/aVPSSMImageMenuIncluded/menuItems/16317649/images/16317669" }, { "rel": "parent", "href": "http://sitename.oracle.com/rest/v17/allProductFamilySetups/_allProductFamilies/productFamilies/testbed/productLines/samplePL/attributes/aVPSSMImageMenuIncluded/menuItems/16317649" } ] }