Deactivate recurrence
Stops the recurrence: no new cycle is generated and the status becomes INACTIVE.
PUT
https://api.payzu.io/v1/charges/recurrences/{recurrentPaymentId}/deactivateResponses
curl -X PUT "https://api.payzu.io/v1/charges/recurrences/string/deactivate" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.io/v1/charges/recurrences/string/deactivate", { method: "PUT", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.io/v1/charges/recurrences/string/deactivate"response = requests.request("PUT", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)200