View A list Of all manifest overrides for A Product

View A list Of all manifest overrides for A Product
View a list of all manifest overrides for a Product

This endpoint will list the currently configured overrides for the given Product. Overrides will be applied in order, so the last override will be applied last.

Request
URI
GET
https://{opsmanager-installation}/api/v0/staged/products/{product_guid}/overrides
COPY
Path Parameters
string
product_guid
Required

The guid of the product


Responses
200

0K

Returns ProductOverrides of type(s) application/json
{
    "overrides": [
        {
            "section": "string",
            "data": {}
        }
    ]
}
array of overrides
overrides
Optional

A list of overrides that will be applied to the given Product manifest.

Overrides will be applied in order, so the last override will be applied last.


400

Setup is not completed

Returns RequireSetupCompleted of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

401

Unauthorized

Returns UnauthorizedResponse of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

403

Requires Advanced Mode

Returns RequiresAdvancedMode of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/v0/staged/products/{product_guid}/overrides