The following examples demonstrate the effects of various combinations of parameters. See Limited Agreement Parameters for more details.
Parameter Combination |
Description |
|
Produces an agreement which is effective immediately. You can initiate an unlimited number of payments of an unlimited value, with no limit on the minimum interval between them. The agreement will run until cancelled. |
|
Produces an agreement where the payments are possible from 2007/1/10 to 2007/7/15. The number of payments is limited to a maximum of 3. The maximum individual payment amount is £20. |
|
Produces an agreement where one payment is possible on 2007/11/10. There is no limit on the payment amount. |
|
Produces an agreement where you can initiate up to 1 payment per day with a maximum value of £10. It is effective immediately and will run for 4 weeks after the date it is created. |
|
Produces an agreement where you can initiate up to 2 payments per month with a maximum value of £20. It is effective immediately and will continue until cancelled by either you or the shopper. |
|
Produces an agreement which will cost the shopper no more than £100. It is effective immediately and will continue until cancelled by either you or the shopper. |
|
Produces an agreement which will cost the shopper no more than £1 a day. It is effective 2 weeks from when it is created and will continue until cancelled by either you or the shopper.
|
The following example limited agreement produces an agreement that is effective immediately
<form action="https://secure-test.worldpay.com/wcc/purchase" method="post">
<input type="hidden" name="instId" value="1234">
<input type="hidden" name="testMode" value="100">
<input type="hidden" name="currency" value="GBP">
<input type="hidden" name="cartId" value="MerchantReference">
<input type="hidden" name="option" value="0">
<input type="hidden" name="futurePayType" value="limited">
<input type="submit" value="Make Purchase">
</form>
The following example produces a limited agreement, where the payments are possible from 2007/1/10 to 2007/7/15. The number of payments is limited to a maximum of 3. The maximum individual payment amount is £20.
![]() |
Ensure that you update the dates in this example. |
<form action="https://secure-test.worldpay.com/wcc/purchase" method="post">
<input type="hidden" name="instId" value="1234">
<input type="hidden" name="testMode" value="100">
<input type="hidden" name="currency" value="GBP">
<input type="hidden" name="cartId" value="MerchantReference">
<input type="hidden" name="futurePayType" value="limited">
<input type="hidden" name="startDate" value="2007-01-10">
<input type="hidden" name="endDate" value="2007-07-15">
<input type="hidden" name="noOfPayments" value="3">
<input type="hidden" name="amountLimit" value="20">
<input type="hidden" name="option" value="0">
<input type="submit" value="Make Purchase">
</form>