获取 Pix 付款凭证
以 PDF 或 base64 返回已完成 Pix 付款的凭证。
curl -X GET "https://api.payzu.processamento.com/v1/withdraw/proof/PAYZU20260817B3PL8SG5WQ000000" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/withdraw/proof/PAYZU20260817B3PL8SG5WQ000000", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/withdraw/proof/PAYZU20260817B3PL8SG5WQ000000"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)