Get Source Item

Get Source Item

Get the SourceItem with given identifier from the given CatalogContentSource.

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/catalogContentSources/{catalogContentSourceId}/sourceItems/{sourceItemId}
COPY
Path Parameters
string
sourceItemId
Required

sourceItemId

string
catalogContentSourceId
Required

catalogContentSourceId


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns SourceItem of type(s) application/json;version=39.1
{
    "id": "string",
    "name": "string",
    "description": "string",
    "itemType": "string",
    "publisher": "string",
    "logo": "string",
    "summary": "string",
    "categories": [
        "string"
    ],
    "screenshots": [
        "string"
    ]
}
string
id
Required

id of the item.

string
name
Required
Constraints: minLength: 0 maxLength: 256

Name of the item.

string
description
Optional
Constraints: minLength: 0 maxLength: 10000

description

string
itemType
Required

Type of the item. Supported types are VmSourceItem and HelmSourceItem

string
publisher
Optional

Publisher of this item.

string
logo
Optional

URL of the logo of this item.

string
summary
Optional
Constraints: minLength: 0 maxLength: 5000

summary

array of string
categories
Optional

A list of categories of this item.

array of string
screenshots
Optional
Constraints: maxItems: 10

A list of URLs of the screenshots.


404

Not Found

Operation doesn't return any data structure

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/catalogContentSources/{catalogContentSourceId}/sourceItems/{sourceItemId}