Get a Product Family Menu Item Image Definition

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/attributes/{attributeVarName}/menuItems/{menuItem_Id}/images/{image_Id}

Use this endpoint to retrieve a definition for the specified Product Family attribute menu item image.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Configuration Menu Item Images
Type: object
Title: Configuration Menu Item Images
Show Source
  • Title: Date Added
    System field indicating the date on which the Resource was created.
  • Title: Date Modified
    System field indicating the date on which the Resource was last modified.
  • Title: Id
    Primary Key of the Resource
  • Title: Relative Path
    Relative Path for Configuration Menu Item Image
Back to Top

Examples

The following example shows how to retrieve a catalog definition for the specified Product Family attribute menu item image 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/varioTablets/attributes/processor/menuItems/36874194/images/36874195

Response Body Sample

{
  "imageUrl1": "$BASE_PATH$/images/octacore.PNG",
  "dateModified": "2019-05-07T15:19:44.000Z",
  "id": 36874195,
  "dateAdded": "2019-05-07T15:17:30.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/varioTablets/attributes/processor/menuItems/36874194/images/36874195"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/varioTablets/attributes/processor/menuItems/36874194"
    }
  ]
}
Back to Top