PayZuDocs

修改循环扣款金额

修改周期扣款后续各期的金额。已生成的周期不受影响。

PUThttps://api.payzu.io/v1/charges/recurrences/{recurrentPaymentId}/amount
PUT
/charges/recurrences/{recurrentPaymentId}/amount

Path Params

Recurrence id

Body Params

New amount of each cycle, in cents

Responses

curl -X PUT "https://api.payzu.io/v1/charges/recurrences/string/amount" \  -H "Authorization: Bearer {{token}}" \  -H "Content-Type: application/json" \  -d '{    "amount": 12000  }'
200
{
"recurrentPaymentId": "5f1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
"interval": "MONTHLY",
"status": "ACTIVE",
"amount": 12000,
"nextRecurrency": "2026-07-12T00:00:00.000Z",
"endDate": "2027-06-12T00:00:00.000Z"
}