Enabling Applications Filter

The enable-aps-filter operation is used to turn on applications list for specified subscriptions and make available only added applications, by default all applications are available.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

A request XML packet turning on the applications list for a subscription and making available only selected applications includes the enable-aps-filter operation node:

<packet>
<webspace>
   <enable-aps-filter>
   ...
   </enable-aps-filter>
</webspace>
</packet>

 

The enable-aps-filter node is presented by type WebspaceApsFilterInputType (webspace.xsd). Its graphical representation is as follows:

webspaceEnableApsFilterInput

 

Response Packet Structure

The enable-aps-filter node of the response packet is structured as follows:

webspaceEnableApsFilterOutput

 

Samples

A packet that turns on the applications list for the subscription with ID 1234 looks as follows:

<packet>
<webspace>
<enable-aps-filter>
   <filter>
      <id>1234</id>
   </filter>
</enable-aps-filter>
</webspace>
</packet>

Response:

<packet>
<webspace>
<enable-aps-filter>
      <result>
         <status>ok</status>
         <filter-id>1234</filter-id>
         <id>1234</id>
      </result>
</enable-aps-filter>
</webspace>
</packet>