我正在使用PayPal需要知道的计费计划的 REST API API 会影响 API 计费计划

  • 本文关键字:API 计费 计划 REST 影响 PayPal paypal
  • 更新时间 :
  • 英文 :

##Here i used rest api##
curl -v -X POST https://api.sandbox.paypal.com/v1/payments/billing-plans/ 
-H "Content-Type: application/json" 
-H "Authorization: Bearer Access-Token" 
-d '{
"name": "Plan with Regular and Trial Payment Definitions",
"description": "Plan with regular and trial payment definitions.",
"type": "FIXED",
"payment_definitions": [
{
"name": "Regular payment definition",
"type": "REGULAR",
"frequency": "MONTH",
"frequency_interval": "2",
"amount": {
"value": "100",
"currency": "USD"
},
"cycles": "12",
"charge_models": [
{
"type": "SHIPPING",
"amount": {
"value": "10",
"currency": "USD"
}
},
{
"type": "TAX",
"amount": {
"value": "12",
"currency": "USD"
}
}
]
},
{
"name": "Trial payment definition",
"type": "TRIAL",
"frequency": "WEEK",
"frequency_interval": "5",
"amount": {
"value": "9.19",
"currency": "USD"
},
"cycles": "2",
"charge_models": [
{
"type": "SHIPPING",
"amount": {
"value": "1",
"currency": "USD"
}
},
{
"type": "TAX",
"amount": {
"value": "2",
"currency": "USD"
}
}
]
}
],
"merchant_preferences": {
"setup_fee": {
"value": "1",
"currency": "USD"
},
"return_url": "https://example.com",
"cancel_url": "https://example.com/cancel",
"auto_bill_amount": "YES",
"initial_fail_amount_action": "CONTINUE",
"max_fail_attempts": "0"
}
}"

我得到了状态创建的成功响应,...但是当我移动到PayPal开发人员帐户并检查,..我找不到任何新的付款, 你能告诉我特定代码会反映吗,你能帮我找到PayPal计费计划请求会反映吗.我在上面附上了以下 API 请求......

创建计费计划后,您必须执行以下操作。

  1. 激活该计划
  2. 创建协议
  3. 获得客户认可
  4. 执行协议

https://developer.paypal.com/docs/subscriptions/