Partial update owner attributes

patch

/gsadmin/v1/{appName}/attributes/{owner}

Partial updates the specified owner index attributes in the given application's index attributes list.

Request

Supported Media Types
Path Parameters
Body ()
The request body represents the partially updated owner index attributes.
Root Schema : ConfigOwnerAttributes
Type: object
Represents a config owner's index attributes. Child nodes represent attributes conforming to one of the following ecr-types:
  • dimension
  • property
  • derived-property
Show Source
Security
Back to Top

Response

Supported Media Types

202 Response

Owner index attributes successfully updated.
Body ()
Root Schema : Response
Type: object
Show Source
Back to Top

Examples

Request Body Example

The following shows a sample request body to partially update owner index attributes.

{
  "ecr:type": "attributes-owner-folder",
  "product.min_price": {
    "derivedPropertySource": "product.price",
    "derivedPropertyFunction": "MIN",
    "ecr:type": "derived-property"
  }
}
Back to Top