PayPal Subscriptions
Briefly

PayPal Subscriptions
"Is it possible to create PayPal subscriptons on the fly, basically the same as creating a product item."
"return actions.order.create({ application_context: { shipping_preference: "NO_SHIPPING", landing_page: "LOGIN", //my preference user_action: "PAY_NOW", //my preference payment_method: { payer_selected: "PAYPAL", payee_preferred: "IMMEDIATE_PAYMENT_REQUIRED" } }, payer: { name: { given_name: payer_..."
A question asks whether PayPal subscriptions can be created on the fly like creating a product item. The provided code shows an orders.create call with application_context options (shipping_preference NO_SHIPPING, landing_page LOGIN, user_action PAY_NOW) and a payment_method setting payer_selected PAYPAL and payee_preferred IMMEDIATE_PAYMENT_REQUIRED, plus payer name fields. Orders.create is intended for one-time payments. Creating subscriptions requires the Subscriptions API workflow: create a product, create a billing plan tied to that product, then create a subscription instance from the plan. The orders flow does not produce subscription or billing-plan resources.
[
|
]