Get All Plug-ins

get

/rest/{versionId}/admin/plugins

Use this (GET) method to display all plug-ins that exist on the SDM server. You can use query parameters with this task to retrieve a specific type of plugin. On the navigation pane, go to Get Started > Send Requests on the navigation pane. On the Send Requests page, scroll to the Pagination Parameters section for more information.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : pluginInfos
Type: object
Show Source
Nested Schema : PageInfo
Type: object
Show Source
Nested Schema : pluginInfo
Type: array
Show Source
Nested Schema : pluginInfo
Type: object
Show Source
Nested Schema : pluginClusterMember
Type: array
Show Source
Nested Schema : pluginClusterMember
Type: object
Show Source

400 Response

The user input is invalid.

401 Response

The session ID is invalid.

403 Response

There is no permission to access the resources.

404 Response

The object (resource URI, device, and so on) of your input request cannot be found.

500 Response

Internal server error
Back to Top

Examples

The following example shows how to query parameters that allow users to retrieve a specific type of plugin on the server by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

<curl>

Example of cURL Data

The following shows an example of cURL data sent with the request.

curl -v -b sessionid.txt -X GET -H"Content-Type: application/xml" -H"Accept: application/xml" http://localhost:8080/rest/v1.1/admin/plugins

Example of Response Body

The following example shows the contents of the response body in XML format.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<pluginInfos>
  <pageInfo>
    <limitation>50</limitation>
    <numberOfElements>3</numberOfElements>
    <offset>1</offset>
  </pageInfo>
  <pluginInfo>
    <pluginClusterMembers>
      <pluginClusterMember>
        <clusterMemberStatus>ACTIVE</clusterMemberStatus>
        <ipAddress>10.196.0.194</ipAddress>
        <lastModifiedDate>2017-09-06 11:13:38</lastModifiedDate>
        <pluginStatus>INSTALLED</pluginStatus>
        <uploadedDate>2017-09-06 11:13:37</uploadedDate>
      </pluginClusterMember>
    </pluginClusterMembers>
    <description/>
    <emPluginAPIVersion>1B1.0</emPluginAPIVersion>
    <id>ID3</id>
    <name>EnterpriseExt</name>
    <packageName>enterpriseext1.0_Package.zip</packageName>
    <product>ISR/EOM</product>
    <type>EMS</type>
    <vendor>Oracle</vendor>
    <version>1.0</version>
  </pluginInfo>
  <pluginInfo>
    <pluginClusterMembers>
      <pluginClusterMember>
        <clusterMemberStatus>ACTIVE</clusterMemberStatus>
        <ipAddress>10.196.0.194</ipAddress>
        <lastModifiedDate>2017-09-07 12:00:47</lastModifiedDate>
        <pluginStatus>INSTALLED</pluginStatus>
        <uploadedDate>2017-09-07 11:58:11</uploadedDate>
      </pluginClusterMember>
    </pluginClusterMembers>
    <description/>
    <emPluginAPIVersion>1B1.0</emPluginAPIVersion>
    <id>ID5</id>
    <name>Enterprise</name>
    <packageName>enterprise1.0_Package.zip</packageName>
    <product>ESBC/ECB</product>
    <type>EMS</type>
    <vendor>Oracle</vendor>
    <version>1.0</version>
  </pluginInfo>
  <pluginInfo>
    <pluginClusterMembers>
      <pluginClusterMember>
        <clusterMemberStatus>ACTIVE</clusterMemberStatus>
        <ipAddress>10.196.0.194</ipAddress>
        <lastModifiedDate>2017-09-07 12:21:34</lastModifiedDate>
        <pluginStatus>INSTALLED</pluginStatus>
        <uploadedDate>2017-09-07 12:02:31</uploadedDate>
      </pluginClusterMember>
    </pluginClusterMembers>
    <description>This is a test</description>
    <emPluginAPIVersion>1B1.0</emPluginAPIVersion>
    <id>ID6</id>
    <name>AcmeSD</name>
    <packageName>sd1.0_Package.zip</packageName>
    <product>Session Delivery</product>
    <type>EMS</type>
    <vendor>Oracle</vendor>
    <version>1.0</version>
  </pluginInfo>
</pluginInfos>
Back to Top