Get Pix payment
Returns the current data of a Pix payment by id, clientReference or endToEndId.
curl -X GET "https://api.payzu.processamento.com/v1/withdraw" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/withdraw", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/withdraw"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)