Including All Apps in a Reseller Account

The disable-aps-filter operation is used to make all applications available for specified reseller accounts. Specified resellers will be able to include these applications in their service plans.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

A request XML packet making all applications available for a reseller account includes the disable-aps-filter operation node:

<packet>
<reseller>
   <disable-aps-filter>
   ...
   </disable-aps-filter>
</reseller>
</packet>

 

The disable-aps-filter node is presented by type ResellerApsFilterTypeInput (reseller.xsd). Its graphical representation is as follows:

resellerDisableApsFilterInput

 

Response Packet Structure

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

resellerDisableApsFilterOutput

 

Samples

A packet that makes all applications available for the reseller account with ID 1234 looks as follows:

<packet>
<reseller>
<disable-aps-filter>
   <filter>
      <id>1234</id>
   </filter>
</disable-aps-filter>
</reseller>
</packet>

Response:

<packet>
<reseller>
<disable-aps-filter>
      <result>
         <status>ok</status>
         <filter-id>1234</filter-id>
         <id>1234</id>
      </result>
</disable-aps-filter>
</reseller>
</packet>