Removing an Application From a Subscription

The remove-package operation is used to remove applications from subscriptions.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

A request XML packet removing an application from a subscription includes the remove-package operation node:

<packet>
<webspace>
   <remove-package>
   ...
   </remove-package>
</webspace>
</packet>

 

The remove-package node is presented by type WebspaceApplicationInput (webspace.xsd). Its graphical representation is as follows:

WebspaceApplicationInput-remove

 

Response Packet Structure

The remove-package node of the response packet is structured as follows:

WebspaceApplicationOutput-remove

 

Samples

A packet that removes an application package WordPress from subscription with ID 1234 looks as follows:

<packet>
<webspace>
<remove-package>
   <filter>
      <id>1234</id>
   </filter>
   <package>
	   <name>name</name>
	   <value>WordPress</value>
	</package>
</remove-package>
</webspace>
</packet>