Fetch Plugin Metadata

Fetch Plugin Metadata

Plug-in metadata contains information about the types that this plug-in defines and their attributes or relations.

Request
URI
GET
https://{api_host}/vco/api/catalog/{namespace}/metadata
COPY
Path Parameters
string
namespace
Required

namespace

Query Parameters
boolean
showHiddenTypes
Optional
Constraints: default: false

showHiddenTypes


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsPluginMetadata of type(s) application/json
{
    "namespace": "string",
    "types": [
        {
            "name": "string",
            "attributes": [
                {
                    "name": "string",
                    "description": "string",
                    "display-name": "string",
                    "possible-result-type": "string"
                }
            ],
            "relations": [
                {
                    "name": "string",
                    "type": "string",
                    "display-name": "string"
                }
            ],
            "icon-href": "string"
        }
    ]
}
string
namespace
Optional

namespace

array of object
types
Optional

types


401

User is not authorized

Returns WsPluginMetadata of type(s) application/json
"WsPluginMetadata Object"
string
namespace
Optional

namespace

array of object
types
Optional

types


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/vco/api/catalog/{namespace}/metadata