Refund Pix
Refunds a received Pix, in full or in part, and confirms completion by webhook.
curl -X POST "https://api.payzu.processamento.com/v1/refund/PAYZU20260814T6NX1CV9MK000000" \ -H "Authorization: Bearer {{token}}" \ -H "Content-Type: application/json" \ -d '{}'const body = JSON.stringify({})fetch("https://api.payzu.processamento.com/v1/refund/PAYZU20260814T6NX1CV9MK000000", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer {{token}}" }, body})import requestsurl = "https://api.payzu.processamento.com/v1/refund/PAYZU20260814T6NX1CV9MK000000"body = """{}"""response = requests.request("POST", url, data = body, headers = { "Content-Type": "application/json", "Authorization": "Bearer {{token}}"})print(response.text)