Viewing A single deployed product

Viewing A single deployed product
Viewing a single deployed product

Viewing a single deployed product

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

The guid of the product


Responses
200

OK

Returns DeployedProduct of type(s) application/json
{
    "installation_name": "string",
    "guid": "string",
    "type": "string",
    "product_version": "string",
    "label": "string",
    "service_broker": false,
    "bosh_read_creds": false,
    "license_metadata": [
        {
            "expiry": "string",
            "product_name": "string",
            "product_version": "string",
            "property_reference": "string"
        }
    ],
    "stale": {
        "parent_products_deployed_more_recently": [
            "string"
        ]
    }
}
string
installation_name
Optional

installation_name

string
guid
Optional

guid

string
type
Optional

type

string
product_version
Optional

product_version

string
label
Optional

label

boolean
service_broker
Optional

service_broker

boolean
bosh_read_creds
Optional

bosh_read_creds

array of license_metadata
license_metadata
Optional

license_metadata

stale
Optional

stale


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

Forbidden

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

404

Product not found

Returns SingleErrorsResponseVariant of type(s) application/json
{
    "errors": "string"
}
string
errors
Optional

errors


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