Request Samples (Windows)

This packet starts migration (with only the required options specified) of the customer account with login name "john_doe" from remote Plesk for Unix server. After the migration is completed, there will be the customer account in destination Plesk owned by Plesk administrator, and with empty IP pool and no subscriptions registered for this customer.

<packet version="1.6.3.0">
<migration>
<start>
   <host>192.0.2.36</host>
   <login>admin</login>
   <password>Lkejd8UU</password>
   <destination-host-directory/>
   <system-type>unix</system-type>

   <selected-objects>
      <migrate-customers>
         <target-owner>admin</target-owner>
         <customer>
            <name>john_doe</name>
         </customer>
      </migrate-customers>
   </selected-objects>

</start>
</migration>
</packet>

This packet starts migration of two customer accounts with login names "edward-sapir" and "benjamin_whorf" from server running Windows, with the required options only. After the migration is completed, there will be these customer accounts in destination Plesk, owned by reseller with login "noam-chomsky", and with empty IP pool and no subscriptions registered for these customers.

<packet version="1.6.3.0">
<migration>
<start>
   <host>192.0.2.50</host>
   <login>admin</login>
   <password>Lkejd8UU</password>
   <source-host-directory/>
   <destination-host-directory/>
   <system-type>windows</system-type>

   <selected-objects>
      <migrate-customers>
         <target-owner>noam_chomsky</target-owner>

         <customer>
            <name>edward-sapir</name>
         </customer>

         <customer>
            <name>benjamin_whorf</name>
         </customer>

      </migrate-customers>
   </selected-objects>

</start>
</migration>
</packet>