Last updated 10 months ago
This endpoint requests a refund for a qrcode with the provided data.
Refund data
No Content
const response = await fetch('v1/pix/{qrcodeid}/refund', { method: 'DELETE', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "amount": 0, "description": "text" }), }); const data = await response.json();
{ "error": "text", "errors": [ "text" ] }