paypal subscription issue
I want to know what does this means : " $10.00 USD for each 24 days "
I am using PayPal Subscription Payment, and I want to get $10 USD for 24 day. How can I set it using HTML Form Variables?
I have used the following code:
<input type="hidden" value="D" name="t3">
<input t开发者_StackOverflow中文版ype="hidden" value="24" name="p3">
Am I correct, or how can I achieve the above mentioned thing (i.e., getting $10 USD for 24 days only)
a3-->Regular subscription price;
t3--->Regular subscription units of duration. Allowable values: D – for days; allowable range for p3 is 1 to 90 W – for weeks; allowable range for p3 is 1 to 52 M – for months; allowable range for p3 is 1 to 24 Y – for years; allowable range for p3 is 1 to 5
p3--->Subscription duration. Specify an integer value in the allowable range for the units of duration that you specify with t3.
Please read the above and change accordingly <input type="hidden" value="D" name="t3">
You're not able to limit the length of a subscription.
You can take payments every day using the following
<input type="hidden" name="p3" value="1" />
<input type="hidden" name="t3" value="D" />
This would give you payments being taken every day, the code in the previous answer will take payment every 24 days.
You need to use the above code and either, using Paypal's API, cancel the subscription, OR cancel it manually.
I found the solution:
<input type="hidden" name="srt" value="24">
<input type="hidden" name="a3" value="10.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="D">
and it will read as:
$10.00 USD for each day, for 24 installments
精彩评论