修改循环扣款金额
修改周期扣款后续各期的金额。已生成的周期不受影响。
PUT
https://api.payzu.io/v1/charges/recurrences/{recurrentPaymentId}/amountResponses
curl -X PUT "https://api.payzu.io/v1/charges/recurrences/string/amount" \ -H "Authorization: Bearer {{token}}" \ -H "Content-Type: application/json" \ -d '{ "amount": 12000 }'const body = JSON.stringify({ "amount": 12000})fetch("https://api.payzu.io/v1/charges/recurrences/string/amount", { method: "PUT", headers: { "Content-Type": "application/json", "Authorization": "Bearer {{token}}" }, body})import requestsurl = "https://api.payzu.io/v1/charges/recurrences/string/amount"body = """{ "amount": 12000}"""response = requests.request("PUT", url, data = body, headers = { "Content-Type": "application/json", "Authorization": "Bearer {{token}}"})print(response.text)200