List downloadable product job logs

List downloadable product job logs
List downloadable product job logs

ZIP files for tasks in the 'downloaded' stage are available at /api/v0/deployed/products/{product_guid}/jobs/{job_guid}/logs/{task_guid}

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

The guid of the product

string
job_guid
Required

The guid of the job


Responses
200

OK

{
    "tasks": [
        {
            "guid": "string",
            "status": "string",
            "timestamp": "string"
        }
    ]
}
array of LogsTask
tasks
Optional

tasks


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 does not exist, has not been deployed, or job does not exist

OneOf
This class returns at least one of the following:
{
    "error": "string"
}

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