content type: list

Returns a array of content.type.info instances which describe the type support plugins in this Content Library.

Request:

HTTP request

GET https://{server}/rest/com/vmware/content/type
No request parameters

Response:

HTTP Status Code: 200

Representations:

{
    "value"[
        {
            "description""string",
            "name""string",
            "type""string",
            "vendor""string",
            "version""string"
        },
        {
            "description""string",
            "name""string",
            "type""string",
            "vendor""string",
            "version""string"
        }
    ]
}
<?xml version="1.0" ?>
<ns0:List-Result xmlns:ns0="http://vmware.com/content/type" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <value-array>
    <array-item>
      <vendor>string</vendor>
      <description>string</description>
      <name>string</name>
      <type>string</type>
      <version>string</version>
    </array-item>
    <array-item>
      <vendor>string</vendor>
      <description>string</description>
      <name>string</name>
      <type>string</type>
      <version>string</version>
    </array-item>
  </value-array>
</ns0:List-Result>

Response Type:

Name Type Description
bold = required
value info[] The array of content.type.info instances which describe the type support plugins in this Content Library.
value[].description string A description of the type support offered by the plugin.

value[].name string The name of the plugin which provides the type support.

value[].type string The type which the plugin supports.

To upload a library item of the type supported by the plugin, the content.library.item_model.type field of the item should be set to this value.

value[].vendor string The name of the vendor who created the type support plugin.

value[].version string The version number of the type support plugin.

Errors:

None